/* === Frontend Chat === */
#cpm-container {
    background: #0047a2;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    max-width: 100%;
    font-family: Arial, sans-serif;
}

.cpm-titulo {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 3px;
}

.cpm-subtitulo {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}

#cpm-mensagens {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 6px;
}

/* Espaçamento entre mensagens e tamanho da fonte configurável */
#cpm-mensagens .cpm-msg {
    margin-bottom: 16px; /* espaço entre mensagens */
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    font-size: 15px;
    line-height: 1.5;
}

#cpm-mensagens .cpm-msg strong {
    color: #ffd700;
}

#cpm-form input[type="text"],
#cpm-form input[type="number"],
#cpm-form textarea {
    width: 100%;
    padding: 7px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
    font-size: 14px;
    color: #000000;
}

#cpm-form button {
    background: #ffd700;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

#cpm-form button:hover {
    background: #e6c200;
}

#cpm-resposta {
    margin-top: 10px;
    font-weight: bold;
}

/* === Admin === */
.wrap h1 {
    margin-bottom: 20px;
}

.wp-list-table .button-danger {
    background-color: #d63638;
    color: #fff;
    border: none;
    padding: 4px 10px;
    border-radius: 3px;
    text-decoration: none;
}

.wp-list-table .button-danger:hover {
    background-color: #a71d1f;
}

textarea.large-text {
    font-family: monospace;
}
