/* =========================================
   DEBUG MODE - Remove after testing
   ========================================= */
/** {
    border: 1px solid rgba(255,0,0,0.1) !important;
}*/

body {
    background: orange !important;
}

/* =========================================
   MAUI MOBILE APP STYLES - SIMPLIFIED
   ========================================= */
.mobile-app-layout {
    height: 100vh !important;
    width: 100vw !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    background: blue !important;
}

/* App Header - MAKE IT VISIBLE */
.app-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.75rem 1rem !important;
    background: #B7410E !important;
    color: white !important;
    height: 60px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1000 !important;
}

.menu-toggle {
    background: red !important;
    border: none !important;
    padding: 0.5rem !important;
    cursor: pointer !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-around !important;
    align-items: center !important;
}

    .menu-toggle span {
        display: block !important;
        width: 20px !important;
        height: 3px !important;
        background: white !important;
    }

.brand {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: white !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
}

/* Side Menu Overlay - MAKE IT VISIBLE */
.side-menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.5) !important;
    z-index: 1998 !important;
}

/* Side Menu Drawer - MAKE IT VISIBLE */
.side-menu-drawer {
    position: fixed !important;
    top: 0 !important;
    left: -320px !important;
    width: 320px !important;
    height: 100vh !important;
    background: white !important;
    transition: left 0.3s ease !important;
    z-index: 1999 !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 2px 0 20px rgba(0,0,0,0.3) !important;
}

.side-menu-drawer--open {
    left: 0 !important;
    background: green !important;
}

/* Side Menu Header */
.side-menu-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    padding: 1.5rem !important;
    background: #B7410E !important;
    color: white !important;
    height: 120px !important;
}

/* Menu Items - MAKE THEM VISIBLE */
.side-menu-item {
    display: flex !important;
    align-items: center !important;
    padding: 1rem 1.5rem !important;
    text-decoration: none !important;
    color: black !important;
    background: white !important;
    border-bottom: 1px solid #ccc !important;
    gap: 1rem !important;
    font-size: 16px !important;
}

.side-menu-group-header {
    display: flex !important;
    align-items: center !important;
    padding: 1rem 1.5rem !important;
    background: #f0f0f0 !important;
    border-bottom: 1px solid #ccc !important;
    gap: 1rem !important;
    cursor: pointer !important;
}

.side-menu-group-content {
    background: #e0e0e0 !important;
}

.side-menu-subitem {
    padding: 0.8rem 1.5rem 0.8rem 3rem !important;
    background: #d0d0d0 !important;
    border-bottom: 1px solid #bbb !important;
}

/* App Content */
.app-content {
    flex: 1 !important;
    padding: 1rem !important;
    background: white !important;
    overflow-y: auto !important;
    height: calc(100vh - 60px) !important;
}

/* =========================================
   WEB LAYOUT - SIMPLIFIED
   ========================================= */
.web-layout {
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    background: orange !important;
}

.web-content {
    flex: 1 !important;
    padding: 2rem !important;
    background: white !important;
}

.title {
    font-family: 'Segoe UI';
    font-size: 42px;
    margin-bottom: 20px;
}

.month-slider {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.month-btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #f4f4f4;
    cursor: pointer;
}

    .month-btn.active {
        background: #0078d4;
        color: white;
        border-color: #005fa3;
    }

.month-box {
    padding: 20px;
    border: 1px solid #dfdfdf;
    border-radius: 12px;
    background: white;
}

.month-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.month-banner-wrapper {
    margin-bottom: 20px;
}

.month-banner {
    width: 100%;
    border-radius: 12px;
    max-height: 250px;
    object-fit: cover;
}

.paksha-container {
    display: flex;
    gap: 20px;
}

.paksha-column {
    flex: 1;
    padding: 12px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #eee;
}

.tithi-card {
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
}

.tithi-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.trow {
    margin-bottom: 4px;
    font-size: 14px;
}

