/* RESPONSIVE MÉDIAS QUERIES */
@media (min-width : 320px) and (max-width : 768px) {
    .title {
        font-size: 1.5em;
        margin-bottom: 15px !important;
    }

    .nav-title {
        justify-content: center !important;
    }

    .bienvenue-title {
        margin-right: auto;
    }

    .proclamateur-sortie,
    .proclamateur-retour {
        margin-bottom: 10px;
    }

    .lieu-sortie,
    .lieu-retour,
    .date-sortie,
    .heure-sortie,
    .date-retour,
    .heure-retour {
        margin-bottom: 20px;
    }
}

@media (min-width : 768px) and (max-width : 992px) {
    .proclamateur-sortie,
    .proclamateur-retour {
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .resizer-handler {
        display: none;
    }
}

/* AUTRES CSS */
html, body {
    height: 100%;  /* Laisser l'ensemble du body occuper toute la hauteur de la fenêtre */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;  /* Assure que le body prend au moins toute la hauteur de la fenêtre */
}

/* Le contenu principal occupe l'espace disponible */
.main-content {
    flex: 1;
}

.content-wrapper { 
    display: block !important; 
}

.btn-success {
    background-color: #1a8754 !important; 
    color: white !important; 
    border-color: #1a8754 !important;
}

.btn-secondary {
    background-color: #6b757d !important; 
    color: white !important; 
    border-color: #6b757d !important;
}

.btn-primary {
    background-color: #0d6dfc !important; 
    color: white !important; 
    border-color: #0d6dfc !important;
}

.btn-danger {
    background-color: #db3545 !important; 
    color: white !important; 
    border-color: #db3545 !important;
}

.modal-header {
    border-bottom: 2px solid #dee2e6;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
}

.modal-content {
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}

.modal-body {
    font-size: 1rem;
    line-height: 1.6;
}

.note-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f8f9fa;
    max-height: 300px;
    overflow-y: auto;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

.form-label {
    font-weight: 600;
}