/* ==========================================================================
   Premium Glassmorphic Dark UI Theme
   Designed for Social Media Agency Job Tracking System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #0b0f19;
    --bg-secondary: #111827;
    --accent: #6366f1;
    --accent-hover: #4f46e5;
    --accent-glow: rgba(99, 102, 241, 0.25);
    
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #1f2937;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(17, 24, 39, 0.65);
    --glass-blur: blur(12px);
    
    /* Status Colors */
    --color-pending: #f59e0b; /* Amber */
    --color-in-progress: #3b82f6; /* Blue */
    --color-review: #a855f7; /* Purple */
    --color-revision: #ef4444; /* Red */
    --color-approved: #10b981; /* Emerald */
    --color-completed: #06b6d4; /* Cyan */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at 50% 0%, #1e1e38 0%, var(--bg-primary) 70%);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.glass-card:hover {
    box-shadow: 0 15px 35px -5px rgba(99, 102, 241, 0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.badge {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-pending { background: rgba(245, 158, 11, 0.15); color: var(--color-pending); border: 1px solid rgba(245, 158, 11, 0.3); }
.badge-in_progress { background: rgba(59, 130, 246, 0.15); color: var(--color-in-progress); border: 1px solid rgba(59, 130, 246, 0.3); }
.badge-client_review { background: rgba(168, 85, 247, 0.15); color: var(--color-review); border: 1px solid rgba(168, 85, 247, 0.3); }
.badge-revision_requested { background: rgba(239, 68, 68, 0.15); color: var(--color-revision); border: 1px solid rgba(239, 68, 68, 0.3); }
.badge-approved { background: rgba(16, 185, 129, 0.15); color: var(--color-approved); border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-completed { background: rgba(6, 182, 212, 0.15); color: var(--color-completed); border: 1px solid rgba(6, 182, 212, 0.3); }

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar {
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.navbar .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a78bfa 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.user-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-badge span {
    width: 8px;
    height: 8px;
    background: var(--color-approved);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-approved);
}

/* ==========================================================================
   Login Page
   ========================================================================== */
.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Forms styling */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.2);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   Dashboard Widgets & Layout
   ========================================================================== */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    margin-top: 2rem;
}

.stat-widget {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.stat-icon {
    font-size: 1.25rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-value {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
}

.stat-trend {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.trend-up { color: var(--color-approved); }
.trend-down { color: var(--color-revision); }

/* ==========================================================================
   Tables & Data Grid
   ========================================================================== */
.table-responsive {
    overflow-x: auto;
    width: 100%;
    margin-top: 1rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.data-table th {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.data-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.01);
}

.avatar-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: white;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
}

.section-header h2 {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-header h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: var(--accent);
    border-radius: 2px;
}

/* ==========================================================================
   Financial breakdown
   ========================================================================== */
.finance-breakdown {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.chart-mockup {
    margin-top: 1rem;
}

.chart-row {
    margin-bottom: 1rem;
}

.chart-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.chart-bar-container {
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, #10b981 100%);
    border-radius: 6px;
}

/* ==========================================================================
   Task Card List & Detailed Client Views
   ========================================================================== */
.task-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.task-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.task-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.task-card-title {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.task-meta-list {
    margin: 1rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.task-meta-item {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.task-meta-item:last-child {
    border-bottom: none;
}

.task-card-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
}

/* Video/Media Review Module */
.media-review-box {
    margin-top: 1.5rem;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    border: 1px solid var(--border-color);
}

.media-review-box video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.media-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
}

.media-placeholder i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Modals
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #111827;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--text-main);
}

/* Revision History Timeline */
.revision-timeline {
    margin-top: 1.5rem;
    position: relative;
}

.revision-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.revision-item {
    position: relative;
    padding-left: 45px;
    margin-bottom: 1.5rem;
}

.revision-dot {
    position: absolute;
    left: 8px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--color-revision);
    border-radius: 50%;
    border: 3px solid #111827;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

.revision-dot.resolved {
    background: var(--color-approved);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.revision-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
}

.revision-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.revision-text {
    font-size: 0.9rem;
    color: var(--text-main);
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
    margin-top: 5rem;
}

/* ==========================================================================
   Responsive Adaptation & Sidebar Grid Layout System
   ========================================================================== */
.app-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.sidebar {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-right: 1px solid var(--border-color);
    padding: 2rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 100;
}

.sidebar-logo {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    padding-left: 0.5rem;
}

.sidebar-user-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.sidebar-user-badge .avatar {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
}

.sidebar-user-badge .user-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.sidebar-user-badge .user-info strong {
    font-size: 0.95rem;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
    display: block;
}

.role-badge {
    font-size: 0.65rem;
    padding: 0.1rem 0.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-block;
    width: fit-content;
}

.role-badge.admin {
    background: rgba(99, 102, 241, 0.15);
    color: var(--accent);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.role-badge.staff {
    background: rgba(59, 130, 246, 0.15);
    color: var(--color-in-progress);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.role-badge.client {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-approved);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-group-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    text-transform: uppercase;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.sidebar-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.sidebar-link:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.04);
}

.sidebar-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.sidebar-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.main-content {
    padding: 2.5rem;
    height: 100vh;
    overflow-y: auto;
    background: radial-gradient(circle at 50% 0%, #171730 0%, var(--bg-primary) 70%);
}

.w-100 {
    width: 100%;
}

/* ==========================================================================
   Premium Interactive Operational Calendar Component
   ========================================================================== */
.calendar-container {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-header h3 {
    font-size: 1.3rem;
    color: var(--text-main);
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.calendar-day-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 0.5rem 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day-cell {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-height: 120px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.calendar-day-cell:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
}

.calendar-day-cell.empty {
    background: transparent;
    border-color: transparent;
    pointer-events: none;
}

.calendar-day-cell.today {
    background: rgba(99, 102, 241, 0.08);
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.1);
}

.calendar-day-number {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    align-self: flex-start;
}

.calendar-day-events {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 0.5rem;
    flex-grow: 1;
    overflow-y: auto;
    max-height: 90px;
}

/* Event Badges styling */
.event-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    border: 1px solid transparent;
    text-decoration: none;
}

.event-badge.shoot {
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-pending);
    border-color: rgba(245, 158, 11, 0.3);
}

.event-badge.edit {
    background: rgba(59, 130, 246, 0.15);
    color: var(--color-in-progress);
    border-color: rgba(59, 130, 246, 0.3);
}

.event-badge.meeting {
    background: rgba(168, 85, 247, 0.15);
    color: var(--color-review);
    border-color: rgba(168, 85, 247, 0.3);
}

.event-badge.other {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    border-color: var(--border-color);
}

/* Toggle Switch / Paid Buttons styling */
.btn-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-toggle-paid {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-approved);
    border-color: rgba(16, 185, 129, 0.3);
}

.btn-toggle-paid:hover {
    background: var(--color-approved);
    color: white;
}

.btn-toggle-unpaid {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-revision);
    border-color: rgba(239, 68, 68, 0.3);
}

.btn-toggle-unpaid:hover {
    background: var(--color-revision);
    color: white;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .app-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        height: auto;
        position: relative;
        padding: 1.5rem;
    }
    
    .sidebar-logo {
        margin-bottom: 1rem;
    }
    
    .sidebar-user-badge {
        margin-bottom: 1rem;
    }
    
    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .nav-group-title {
        width: 100%;
        margin-top: 0.75rem;
    }
    
    .main-content {
        height: auto;
        padding: 1.5rem;
    }
}
