    
/* ========== HAMBURGER MENU MOBILE STYLES ========== */

/* ============================================= */
@media (max-width: 768px) {
    /* Only target the specific content table, not ALL tables */
    .item-page > div > table {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .item-page > div > table tbody {
        display: contents !important;
    }
    
    .item-page > div > table tr {
        display: contents !important;
    }
    
    /* Target only the table cells in the main content area */
    .item-page > div > table td {
        display: block !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Remove inline widths from content table cells only */
    .item-page > div > table td[style*="width"] {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Stack main content first, then sidebar */
    .item-page > div > table td:nth-child(1) {
        order: 1 !important;
        padding: 20px !important;
    }
    
    .item-page > div > table td:nth-child(2) {
        display: none !important; /* Hide the spacer column */
    }
    
    .item-page > div > table td:nth-child(3) {
        order: 2 !important;
        padding: 20px !important;
        background: #f8f8f8 !important;
        margin-top: 20px !important;
        border-radius: 8px !important;
    }
}