.list-group-custom {
    display: flex ; flex-direction: column; padding-left: 0; margin-bottom: 0; border: none;
}
.list-group-custom .list-group-item {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
}
.section-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.section-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #0d5f7d;
    padding-bottom: 5px;
    color: #0d5f7d;
}

.section-box-form {
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

#loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9); /* Léger fond translucide */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column; /* Empile le texte et le spinner */
    align-items: center; /* Centre horizontalement */
    justify-content: center; /* Centre verticalement */
    width: 200px; /* Ajustez selon vos besoins */
    height: 200px; /* Ajustez selon vos besoins */
}

.spinner {
    width: 80px; /* Taille augmentée */
    height: 80px; /* Taille augmentée */
    border: 6px solid transparent; /* Bordure plus épaisse */
    border-top: 6px solid #3498db; /* Couleur de la rotation */
    border-radius: 50%;
    animation: spin 1.5s linear infinite; /* Animation fluide */
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#loader p {
    margin: 20px 0 0; /* Espacement entre le texte et le spinner */
    font-size: 16px; /* Taille du texte */
    color: #333; /* Couleur du texte */
}

.last-preview{
    max-height:150px;
    object-fit:cover
}
.carousel{
    padding: 48px 0;
    background-color: #cce0e8;
}
.carousel .swiper-slide a{
    display: block;
    max-width: 180px;
    margin: 0 auto;
}
.carousel .swiper-button-next, .carousel .swiper-button-prev{
    color: #0d5f7d;
}
