.leo-events-container {
    margin: 20px 0 0 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #004066;
}

.leo-custom-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: "Open Sans", Arial, sans-serif;
    background-color: #fff;
    margin: 0 !important;
}

.leo-custom-table thead th {
    background-color: #004066; 
    color: #ffffff !important;
    text-align: left;
    padding: 18px 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Border Radius */
.leo-custom-table tr:first-child th:first-child { border-top-left-radius: 10px; }
.leo-custom-table tr:first-child th:last-child { border-top-right-radius: 10px; }

.leo-custom-table td {
    padding: 15px;
    border-bottom: 1px solid #e1e8ed;
    color: #444;
    font-size: 15px;
}

/* Desktop Zebra Striping */
@media (min-width: 768px) {
    .leo-custom-table tbody tr:nth-child(even) {
        background-color: #f0f7fa; 
    }
    .leo-custom-table tbody tr:hover {
        background-color: #e6f2f8;
        transition: background-color 0.3s ease;
    }
}

.leo-event-title {
    font-weight: bold;
    color: #004066;
}

.leo-room-badge {
    background: #e1e8ed;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    color: #004066;
    font-weight: 500;
}

/* Responsive Mobile Layout*/
@media (max-width: 767px) {
    .leo-custom-table thead { display: none; }
    
    .leo-events-container, .leo-custom-table { 
        border: none !important; box-shadow: none; 
    }

    .leo-custom-table tr {
        display: flex;
        flex-direction: column; 
        margin: 2px 2px 15px 2px; 
        background-color: transparent;
    }

    .leo-custom-table .leo-event-title { 
        order: -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center !important; 
        padding: 12px 15px !important;
        color: #ffffff !important;
        background-color: #004066 !important; 
        border-radius: 8px 8px 0 0;
        border: none !important;
    }

    .leo-title-text {
        font-size: 18px;
        font-weight: bold;
        display: block;
        margin-bottom: 4px;
    }

    .leo-title-date {
        font-size: 14px;
        font-weight: 400;
        opacity: 0.9;
        display: block;
    }

    .leo-custom-table td.leo-mobile-date {
        display: none !important;
    }

    .leo-custom-table td:not(.leo-event-title):not(.leo-mobile-date) { 
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
        background-color: #fff !important;
        color: #444;
    }

    .leo-custom-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #888; 
        font-size: 12px;
        text-transform: uppercase;
    }

    .leo-room-badge {
        margin: 0;
        background: #f0f7fa;
        border: 1px solid #004066;
    }

    .leo-custom-table tr td:last-child {
        border-radius: 0 0 8px 8px;
        border-bottom: 1px solid #e1e8ed;
    }
}