/* ============================================================
   CODE FINAL : FOND SOMBRE + TITRE CLASSE + BOUTON BLEU NUIT
   ============================================================ */

/* --- 1. LE FOND BLEU NUIT --- */
body, html, #app, .v-application, .main-wrapper, .container, .v-card, .v-sheet {
    background-color: #0a111f !important; /* Bleu du logo */
    color: #ffffff !important;
    font-family: Arial, sans-serif !important;
}

/* --- 2. LE TITRE "MOREL ENTRETIEN" (Blanc et Classe) --- */
h1, h2, .title, .v-card__title {
    color: #ffffff !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 22px !important;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5) !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid rgba(255,255,255,0.2) !important;
    padding-bottom: 10px !important;
}

/* --- 3. LE RESTE DU TEXTE (Normal) --- */
p, span, label, div {
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: normal !important;
    font-size: 15px !important;
    text-shadow: none !important;
}

/* --- 4. CHAMPS DE SAISIE (Blancs pour écrire) --- */
input, textarea, select, .v-input__control {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #ccc !important;
    border-radius: 0px !important;
}

/* --- 5. LE BOUTON (Bleu Nuit avec Cadre Blanc) --- */
button, .v-btn {
    background-color: #0a111f !important; /* FOND BLEU NUIT */
    color: #ffffff !important; /* TEXTE BLANC */
    border: 2px solid #ffffff !important; /* CADRE BLANC (pour qu'on le voie) */
    border-radius: 0px !important; /* Carré */
    font-weight: bold !important;
    text-transform: uppercase !important;
    padding: 10px 20px !important;
}

/* Quand on passe la souris, il s'allume en blanc (effet classe) */
button:hover, .v-btn:hover {
    background-color: #ffffff !important;
    color: #0a111f !important;
}