/* style_candid.css */

/* Style fixe pour l'en-tête */
.app-header {
    background-color: #0d6efd; /* Couleur homogène */
    width: 100%;              /* Largeur pleine page */
    padding: 0;               /* Reset Bootstrap */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.app-header .container-fluid {
    max-width: 100%;
}

.app-header h5,
.app-header p {
    color: white;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0;
}

.app-header img {
    transition: transform 0.2s ease;
}

.app-header img:hover {
    transform: scale(1.05);
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

/* Conteneur centralisé */
.container-custom {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Carte centrale */
.card {
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Formulaire */
.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

.btn-lg {
    padding: 0.75rem 1.25rem;
    font-size: 1.1rem;
    width: 100%;
}

/* Responsive bouton */
@media (max-width: 576px) {
    .btn-lg {
        font-size: 1rem;
    }

    .card-header h4 {
        font-size: 1.25rem;
    }
}