.test-filtre-container {
    display: flex;
    gap: 20px;
}

.test-filtre-sidebar {
    flex: 0 0 250px;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
}

.test-filtre-sidebar h3 {
    margin-top: 0;
}

.test-filtre-sidebar div {
    margin-bottom: 15px;
}

.test-filtre-sidebar label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.test-filtre-sidebar select,
.test-filtre-sidebar input[type="date"] {
    width: 100%;
    padding: 8px;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.test-filtre-sidebar input[type="submit"] {
    width: 100%;
    padding: 10px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.test-filtre-sidebar input[type="submit"]:hover {
    background: #005a87;
}

.btn-reset-filtre {
    width: 100%;
    padding: 10px;
    background: #ddd;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.btn-reset-filtre:hover {
    background: #ccc;
}

.test-sessions-list {
    flex: 1;
}

.session-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.session-col-left {
    flex: 0 0 200px;
    text-align: center;
}

.session-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.session-no-img {
    width: 100%;
    height: 150px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    margin-bottom: 10px;
}

.session-date {
    margin: 0;
    font-weight: bold;
    color: #333;
}

.session-col-middle {
    flex: 1;
}

.session-col-middle h4 {
    margin: 0;
    color: #0073aa;
}

.session-col-right {
    flex: 0 0 120px;
    text-align: center;
}

.btn-voir-details {
    display: inline-block;
    padding: 10px 20px;
    background: #FFD700;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
}

.btn-inscrire {
    display: inline-block;
    padding: 10px 20px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    margin-top: 10px;
}

.btn-voir-details:hover {
    background: #FFC700;
}

.pagination {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 30px;
    padding: 20px 0;
}

.page-link {
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #ddd;
    color: #0073aa;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s;
}

.page-link:hover {
    background: #0073aa;
    color: white;
}

.page-link.active {
    background: #0073aa;
    color: white;
    font-weight: bold;
}
