.cancel_filter {
    border: none;
    margin: 0;
    padding: 0 0 0 3px;
    background: none;
}
.auth-fluid-right {
    position: relative;
    width: 100%;
    height: 100vh; /* hauteur pleine page */
    overflow: hidden;
}

.auth-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.auth-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fade 24s infinite;
    filter: brightness(60%);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.auth-slider img:nth-child(1) { animation-delay: 0s; }
.auth-slider img:nth-child(2) { animation-delay: 6s; }
.auth-slider img:nth-child(3) { animation-delay: 12s; }
.auth-slider img:nth-child(4) { animation-delay: 18s; }

@keyframes fade {
    0%   { opacity: 0; }
    4%   { opacity: 1; }
    25%  { opacity: 1; }
    29%  { opacity: 0; }
    100% { opacity: 0; }
}


.auth-user-testimonial {
    position: absolute;
    top: 80%; /* plus bas que 50% */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: white;
    text-align: center;
    padding: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-title span {
    font-style: italic;
}

.hero-subtitle {
    color: #9f9f9f;
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
}

.dashboard-card {
    border-radius: 16px;
    width:300px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: linear-gradient(to bottom right, #ffffff, #f9f9f9);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01),0 2px 4px -2px rgba(0, 0, 0, 0.01);

}

.dashboard-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.dashboard-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.dashboard-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.dashboard-value {
    font-size: 1.4rem;
    font-weight: bold;
}

.bg-light-primary { background-color: rgba(13, 110, 253, 0.1); }
.bg-light-success { background-color: rgba(25, 135, 84, 0.1); }
.bg-light-warning { background-color: rgba(255, 193, 7, 0.1); }
.bg-light-info    { background-color: rgba(13, 202, 240, 0.1); }
.bg-light-danger  { background-color: rgba(220, 53, 69, 0.1); }

.table-cours th {
    font-weight: 600;
}

.table-cours td {
    vertical-align: middle;
}

.btn-group .btn {
    min-width: 120px;
}

.adherents-section {
    background-color: #6c757d;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.section-title {
    font-weight: 600;
    color: #6c757d;
}

.filter-select {
    min-width: 160px;
}

.table-adherents thead th {
    background-color: #f0f0f0;
    font-weight: 600;
    color: #555;
    border-bottom: 2px solid #ddd;
}

.table-adherents td {
    vertical-align: middle;
    font-size: 15px;
}

.status-badge {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 20px;
}

.btn-outline-primary {
    border-radius: 20px;
    padding: 6px 14px;
}

.statistiques-section {
    background-color: #fff;
    padding: 2rem;
    border-radius: 16px;
}

.card-title {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

canvas {
    width: 100% !important;
    height: auto !important;
}

.parametres-section .card {
    transition: transform 0.2s ease;
}
.parametres-section .card:hover {
    transform: scale(1.01);
}
.parametres-section h5 {
    font-weight: 600;
    color: #2b2b2b;
}
