/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 06 2025 | 10:22:42 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

@media (max-width: 768px) {
    /* Make time column sticky and narrow */
    table td:first-child {
        position: sticky;
        left: 0;
        background: #2c3e50;
        font-size: 11px;
        min-width: 60px !important;
        padding: 8px 4px !important;
    }
    
    /* Allow horizontal scroll for sessions */
    .schedule-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        font-size: 13px;
    }
}