/* zen.css - Zen Mode for Kusukusu */
/* Hides everything except projects, tasks, and filters */

/* Hide the main left sidebar */
[data-theme="zen"] .sidebar {
    display: none !important;
}

/* Hide Team Switcher */
[data-theme="zen"] .team-select {
    display: none !important;
}

/* Hide the View Tabs / View Actions */
[data-theme="zen"] .view-actions-panel {
    display: none !important;
}

/* Hide the "+ New Project" button (usually the second btn-secondary in the header) */
[data-theme="zen"] button[title="New Project"] {
    display: none !important;
}

/* Hide the mobile menu button if present */
[data-theme="zen"] .btn-icon[style*="margin-right: 0.2rem"] {
    display: none !important;
}

/* Ensure main content takes full width without sidebar */
[data-theme="zen"] .main-content {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

/* To hide the top header logo if you add one later, or the user profile */
[data-theme="zen"] .user-profile {
    display: none !important;
}

/* Show the user avatar in the header under Zen mode so users can switch back */
[data-theme="zen"] .zen-user-avatar {
    display: flex !important;
}

