/* ─── Dashboard Premium Layout ─── */
.dashboard-wrapper {
    display: flex;
    gap: 24px;
    padding: 120px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
}

.dashboard-sidebar {
    width: 320px;
    flex-shrink: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 8px;
}

.sidebar-user-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

.sidebar-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    flex-shrink: 0;
}

.sidebar-user-info {
    overflow: hidden;
}

.sidebar-user-name {
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.sidebar-user-email, .sidebar-user-mobile {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.6);
    color: var(--color-text);
    transform: translateX(4px);
}

.menu-item.active {
    background: var(--color-primary);
    color: #111;
}

.menu-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 8px 0;
}

.text-danger {
    color: #DC2626 !important;
}

.text-danger:hover {
    background: rgba(220, 38, 38, 0.1);
}

.dashboard-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.content-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.placeholder-section {
    text-align: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--glass-border);
}

.placeholder-icon {
    font-size: 4.5rem;
    margin-bottom: 12px;
}

@media (max-width: 900px) {
    .dashboard-wrapper {
        flex-direction: column;
        padding-top: 100px;
    }
    .dashboard-sidebar {
        width: 100%;
    }
    .dashboard-content {
        padding: 30px 20px;
    }
}
