/* =========================================================
   RESTOS DU COEUR - LISTMONK PUBLIC
   ========================================================= */

html,
body {
    background-color: #f7f7f7;
    color: #000000;
}

/* Liens */
a {
    color: #e6007e;
    text-decoration-color: #e6007e;
}

a:hover {
    color: #b80065;
}

/* Titres */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
}

/* Conteneurs / cartes */
.box,
.card {
    background-color: #ffffff;
    border-top: 4px solid #e6007e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Bouton principal */
.button.is-primary,
button[type="submit"] {
    background-color: #e6007e !important;
    border-color: #e6007e !important;
    color: #ffffff !important;
}

.button.is-primary:hover,
button[type="submit"]:hover {
    background-color: #c9006e !important;
    border-color: #c9006e !important;
}

/* Boutons secondaires */
.button:not(.is-primary) {
    border-color: #e6007e;
}

/* Champs */
.input:focus,
.textarea:focus,
.select select:focus {
    border-color: #e6007e !important;
    box-shadow: 0 0 0 0.125em rgba(230, 0, 126, 0.15) !important;
}

input[type="checkbox"],
input[type="radio"] {
    accent-color: #e6007e;
}

/* Messages d'information */
.notification.is-info {
    background-color: #5BC5F2;
    color: #000000;
}

/* Succès */
.notification.is-success {
    background-color: #B4D9B9;
    color: #000000;
}

/* Avertissement */
.notification.is-warning {
    background-color: #fbba00;
    color: #000000;
}

/* Éléments secondaires */
.tag,
.badge {
    background-color: #fbba00;
    color: #000000;
}

/* Séparateurs */
hr {
    background-color: #e6007e;
    height: 2px;
}

/* Sélection de texte */
::selection {
    background-color: #e6007e;
    color: #ffffff;
}