body {
    background-color: #043f7a;
    /* Dark blue */
    color: white;
    /* White text */
}

/* Animation d'apparition des cards */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Séparateurs */
.section-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    margin: 40px 0;
}

/* Modifier le séparateur de section pour qu'il soit plus substantiel */
.major-section-divider {
    height: 40px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.major-section-divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
}

/* Icône de séparation */
.divider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #043f7a;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

/* Badges de comptage */
.folder-badge {
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 14px;
    margin-left: 10px;
    vertical-align: middle;
}

/* Styles généraux pour les titres de sections */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: red;
    bottom: -10px;
    left: 25%;
}

/* Style pour les compteurs */
.pdf-count {
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
    color: #e0e0e0;
}