/* Dashboard Layout & Base */
.dashboard-body {
    background: #f8fafc;
    height: 100vh;
    overflow: hidden;
    color: #1e293b;
}

.dashboard-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    height: 100vh;
}

.content-area {
    padding: 48px;
    overflow-y: auto;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notifications-icon {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
}

/* Tab Switching Logic */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Overrides for Layout */
@media (max-width: 1024px) {
    .dashboard-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-body {
        overflow: auto;
        height: auto;
    }

    .dashboard-container {
        display: block;
        min-height: 100vh;
        padding-bottom: 80px;
    }

    .content-area {
        padding: 24px 16px;
    }

    .content-header {
        margin-bottom: 24px;
    }

    .content-header h1 {
        font-size: 1.5rem;
    }

    .dashboard-footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        margin-top: 40px !important;
    }
}