body {
    background-color: #1c1c24;
    color: white;
    font-family: 'Patrick Hand', sans-serif;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
    padding: 1rem 1rem;
    text-align: center;
    background-color: #1c1c24;
}

.cours-title {
    font-size: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    animation: fadeSlideIn 1s ease forwards;
    opacity: 0;
}

.table-container {
    overflow-x: unset;
}

.cours-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: fadeSlideIn 1s ease 0.3s forwards;
    opacity: 0;
}

.cours-table th, .cours-table td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    text-align: center;
    font-size: 1.2rem;
}

.cours-table th {
    background-color: rgba(255, 255, 255, 0.1);
    font-weight: bold;
    font-size: 1.3rem;
}

.cours-table tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media screen and (max-width: 640px) {
    .cours-table th, .cours-table td {
        padding: 0.7rem;
        font-size: 1rem;
    }

    .table-container {
        overflow-x: auto;
    }
}