/**
 * Styles pour optimiser l'affichage des formulaires
 * Réduit l'interligne pour les listes à choix multiples
 */

/* Réduction générale de l'interligne pour les checkboxes compactes */
.compact-checkboxes .form-check {
    margin-bottom: 0.25rem !important;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
}

.compact-checkboxes .form-check-label {
    line-height: 1.3;
    font-size: 0.95rem;
}

.compact-checkboxes .form-check-input {
    margin-top: 0.15rem;
}

/* Application spécifique aux centres d'intérêt */
#contact_profil_vote_centresInteret .form-check,
.centres-interet-list .form-check {
    margin-bottom: 0.25rem !important;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
}

#contact_profil_vote_centresInteret .form-check-label,
.centres-interet-list .form-check-label {
    line-height: 1.3;
    font-size: 0.95rem;
}

/* Application spécifique aux préoccupations */
#contact_profil_vote_preoccupations .form-check,
.preoccupations-list .form-check {
    margin-bottom: 0.25rem !important;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
}

#contact_profil_vote_preoccupations .form-check-label,
.preoccupations-list .form-check-label {
    line-height: 1.3;
    font-size: 0.95rem;
}

/* Application aux ateliers thématiques */
.ateliers-themes-list .form-check {
    margin-bottom: 0.25rem !important;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
}

.ateliers-themes-list .form-check-label {
    line-height: 1.3;
    font-size: 0.95rem;
}

/* Optimisation pour les listes d'engagement */
.engagement-list .form-check {
    margin-bottom: 0.35rem !important;
}

.engagement-list .form-check-label {
    line-height: 1.4;
}

/* Conteneur des formulaires avec scroll si nécessaire */
.compact-checkboxes-container {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Amélioration de la scrollbar */
.compact-checkboxes-container::-webkit-scrollbar {
    width: 8px;
}

.compact-checkboxes-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.compact-checkboxes-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.compact-checkboxes-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive : ajustement pour mobile */
@media (max-width: 768px) {
    .compact-checkboxes .form-check-label,
    .centres-interet-list .form-check-label,
    .preoccupations-list .form-check-label {
        font-size: 0.9rem;
    }
}