/* Base styling for the table */
.tablesessions {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    /* background-color: #f9f9f9; */
    border: 1px solid #ddd;
    background: linear-gradient(to bottom left, #37517e 40%, #47b2e4 100%);
    /* background-color: transparent !important;
    background: none !important; */
    /* Remove any background color or image */
    /* Ensure transparency */
    color: white;
}

/* Table header styling */
.tablesessions th {
    background-color: #37517e;
    /* background: linear-gradient(to bottom left, #37517e 40%, #47b2e4 100%); */
    color: white;
    padding: 10px;
    text-align: center;
}

/* Table row styling */
.tablesessions td {
    padding: 10px;
    border: 1px solid #ddd;
}

/* Zebra striping for rows
.tablesessions tr:nth-child(even) {
    background-color: #f2f2f2;
} */

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
    .tablesessions {
        font-size: 14px;
    }

    .tablesessions th,
    .tablesessions td {
        padding: 8px;
    }

    .tablesessions {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Responsive styling for very small screens */
@media (max-width: 480px) {
    .tablesessions {
        font-size: 12px;
    }

    .tablesessions th,
    .tablesessions td {
        padding: 6px;
    }
}