/* VER: 1.0 - 2026-04-03 - iOS-style admin panel with slide-in drawer */

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #f2f2f3;
    color: #141414;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #151515 0%, #2b2b2b 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.brand-name {
    font-size: 20px;
    font-weight: 600;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.profile-menu {
    position: relative;
}

.profile-avatar {
    list-style: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #141414 0%, #2f2f2f 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
}

.profile-avatar::-webkit-details-marker {
    display: none;
}

.profile-dropdown {
    position: absolute;
    top: 44px;
    right: 0;
    min-width: 230px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
    padding: 12px;
    z-index: 200;
}

.profile-email {
    font-size: 13px;
    color: #444;
    margin-bottom: 8px;
    word-break: break-word;
}

.profile-role {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(247, 167, 54, 0.18);
    color: #8a5600;
    margin-bottom: 10px;
}

.profile-logout {
    display: inline-block;
    margin-top: 4px;
    text-decoration: none;
    color: #ff3b30;
    font-size: 13px;
    font-weight: 600;
}

/* ============================================
   MAIN CONTAINER
   ============================================ */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    margin-bottom: 32px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 16px;
    color: #666;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: #141414;
    color: white;
    border-color: #141414;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
    transform: translateY(-1px);
    background: #000;
    border-color: #000;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: #fff;
    color: #141414;
    border-color: #141414;
}

.btn-secondary:hover {
    background: #141414;
    color: #fff;
}

.btn-accent,
.btn-outline-accent {
    background: #fff;
    color: #f7a736;
    border-color: #f7a736;
}

.btn-accent:hover,
.btn-outline-accent:hover {
    background: #f7a736;
    color: #141414;
}

.btn-danger {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.btn-danger:hover {
    background: rgba(255, 59, 48, 0.15);
}

.btn-small {
    padding: 6px 12px;
    font-size: 13px;
}

/* ============================================
   USERS TABLE
   ============================================ */
.users-table-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
}

.users-table thead {
    background: rgba(0, 0, 0, 0.02);
}

.users-table th {
    padding: 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.users-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.users-table tbody tr:last-child td {
    border-bottom: none;
}

.users-table tbody tr:hover {
    background: rgba(102, 126, 234, 0.02);
}

/* User info in table */
.user-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.user-email {
    font-size: 13px;
    color: #666;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-admin {
    background: #667eea;
    color: white;
}

.badge-user {
    background: rgba(52, 199, 89, 0.1);
    color: #34c759;
}

.badge-active {
    background: rgba(52, 199, 89, 0.1);
    color: #34c759;
}

.badge-inactive {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
}

.teams-list {
    font-size: 13px;
    color: #666;
}

/* Action buttons in table */
.table-actions {
    display: flex;
    gap: 8px;
}

/* ============================================
   SLIDE-IN PANEL (DRAWER)
   ============================================ */
.drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drawer-overlay.active {
    display: block;
    opacity: 1;
}

.drawer {
    position: fixed;
    top: 0;
    right: -500px;
    width: 500px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.drawer.active {
    right: 0;
}

.drawer-header {
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.drawer-title {
    font-size: 24px;
    font-weight: 700;
}

.drawer-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    transition: all 0.2s ease;
}

.drawer-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.drawer-body {
    padding: 24px;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-label.required::after {
    content: " *";
    color: #ff3b30;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    background: white;
    color: #1a1a1a;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #f7a736;
    box-shadow: 0 0 0 4px rgba(247, 167, 54, 0.2);
}

.form-input::placeholder {
    color: #999;
}

/* Multiselect assignee iOS style */
.multiselect-assignee {
    display: none;
}

.assignee-dropdown {
    position: relative;
}

.assignee-dropdown-toggle {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    background: #fff;
    color: #141414;
    padding: 10px 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.assignee-dropdown-toggle .assignee-dropdown-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.assignee-dropdown-toggle .assignee-dropdown-icon {
    color: #6b7280;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.assignee-dropdown.open .assignee-dropdown-toggle,
.assignee-dropdown-toggle:focus {
    border-color: #f7a736;
    box-shadow: 0 0 0 4px rgba(247, 167, 54, 0.15);
}

.assignee-dropdown.open .assignee-dropdown-toggle .assignee-dropdown-icon {
    transform: rotate(180deg);
}

.assignee-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 40;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    padding: 8px;
    max-height: 260px;
    overflow: auto;
    display: none;
}

.assignee-dropdown.open .assignee-dropdown-menu {
    display: block;
}

.assignee-dropdown-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 9px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.assignee-dropdown-option:hover {
    background: rgba(247, 167, 54, 0.1);
}

.assignee-dropdown-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    accent-color: #f7a736;
    cursor: pointer;
}

.assignee-dropdown-option.is-selected {
    background: rgba(20, 20, 20, 0.06);
}

.form-hint {
    font-size: 13px;
    color: #666;
    margin-top: 6px;
}

/* Checkbox group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #f7a736;
}

.checkbox-label {
    font-size: 15px;
    color: #333;
    cursor: pointer;
}

/* ============================================
   DRAWER FOOTER
   ============================================ */
.drawer-footer {
    padding: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 12px;
    position: sticky;
    bottom: 0;
    background: white;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(52, 199, 89, 0.1);
    color: #34c759;
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.alert-error {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.alert-info {
    background: rgba(0, 122, 255, 0.1);
    color: #007aff;
    border: 1px solid rgba(0, 122, 255, 0.2);
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.empty-state-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.empty-state-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
}

/* ============================================
   LANGUAGE SWITCHER (iOS Toggle Style)
   ============================================ */
.language-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 4px;
    gap: 4px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.lang-option {
    position: relative;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    user-select: none;
    -webkit-user-select: none;
}

.lang-option.active {
    color: #1a1a1a;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.lang-option:hover:not(.active) {
    color: rgba(0, 0, 0, 0.7);
}

/* Light theme for header */
.header .language-switcher {
    background: rgba(0, 0, 0, 0.06);
}

/* ============================================
   PASSWORD GENERATOR
   ============================================ */
.password-input-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.password-input-group .form-input {
    flex: 1;
}

.btn-generate-password {
    padding: 10px 16px;
    background: #141414;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.btn-generate-password:hover {
    transform: translateY(-1px);
    background: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
}

.btn-generate-password:active {
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .drawer {
        top: auto;
        bottom: -100%;
        right: 0;
        width: 100%;
        height: min(92vh, 760px);
        height: min(92dvh, 760px);
        border-radius: 18px 18px 0 0;
        transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .drawer.active {
        bottom: 0;
        right: 0;
    }

    .drawer-footer {
        padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    }

    .header {
        padding: 12px 14px;
    }

    .header-content {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 10px;
        position: relative;
    }

    .header-brand {
        min-width: 44px;
        flex: 1 1 auto;
    }

    .brand-name {
        display: none;
    }

    .header-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px;
    }

    .settings-icon {
        display: none !important;
    }

    .header-actions .profile-menu {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        z-index: 2;
    }

    .header-actions .btn {
        flex: 0 1 auto;
    }

    .users-table-container {
        overflow-x: auto;
    }

    .users-table-container.mobile-cards-container {
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        overflow: visible;
    }

    .users-table.mobile-cards,
    .users-table.mobile-cards tbody,
    .users-table.mobile-cards tr,
    .users-table.mobile-cards td {
        display: block;
        width: 100%;
    }

    .users-table.mobile-cards thead {
        display: none;
    }

    .users-table.mobile-cards tbody {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .users-table.mobile-cards tbody tr {
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        padding: 10px 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .users-table.mobile-cards tbody tr:hover {
        background: #fff;
    }

    .users-table.mobile-cards td {
        border: none;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
        padding: 10px 0;
    }

    .users-table.mobile-cards td:last-child {
        border-bottom: none;
        padding-bottom: 2px;
    }

    .users-table.mobile-cards td::before {
        content: attr(data-label);
        display: block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #6b7280;
        margin-bottom: 6px;
    }

    .users-table.mobile-cards tbody tr.mobile-empty-row td::before {
        display: none;
    }

    .users-table.mobile-cards .table-actions {
        gap: 6px;
        flex-wrap: wrap;
    }

    .users-table.mobile-cards .table-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .users-table.mobile-cards .table-actions .context-action-btn {
        flex: 0 0 auto;
    }

    .main-container {
        padding: 20px 16px;
    }

    .table-actions {
        flex-direction: row;
    }

    .context-actions {
        gap: 8px;
    }

    .context-action-btn:not(.large),
    .btn-icon,
    .drawer-close,
    .settings-icon,
    .top-notifications-btn,
    .push-toggle-btn,
    .crm-lightbox-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        border-radius: 12px;
    }

    .profile-avatar {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        border-radius: 50%;
    }

    .context-action-btn.participants-add-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        border-radius: 12px;
        border: 1px solid rgba(247, 167, 54, 0.42);
        background: rgba(247, 167, 54, 0.08);
        color: #a16000;
        font-size: 15px;
    }

    .context-action-btn.participants-add-btn:hover,
    .context-action-btn.participants-add-btn:focus-visible {
        border-color: rgba(247, 167, 54, 0.75);
        background: rgba(247, 167, 54, 0.16);
        color: #704400;
        box-shadow: none;
    }

    .context-actions .participants-indicator+.context-action-btn.participants-add-btn {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .header-actions {
        justify-content: flex-start;
    }

    .header-actions .btn.btn-small {
        padding: 8px 10px;
        font-size: 12px;
    }

    .language-switcher {
        transform: scale(0.95);
        transform-origin: left center;
    }
}

/* ============================================
   PROJECTS GRID (KROK 3)
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.project-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.project-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.project-name a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-name a:hover {
    color: #f7a736;
}

.project-actions {
    display: flex;
    gap: 8px;
}

.btn-icon {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    background: rgba(247, 167, 54, 0.16);
    color: #8a5600;
}

.project-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
}

.project-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.project-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #141414 0%, #f7a736 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.project-owner,
.project-due {
    display: flex;
    align-items: center;
    gap: 6px;
}

.participants-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #000000;
    font-size: 13px;
    cursor: help;
    margin-left: 6px;
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* ============================================
   STATUS BADGES (SETTINGS PAGE)
   ============================================ */
.status-badge {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.status-success {
    background: rgba(52, 199, 89, 0.1);
    color: #34c759;
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.status-warning {
    background: rgba(255, 149, 0, 0.1);
    color: #ff9500;
    border: 1px solid rgba(255, 149, 0, 0.2);
}

.status-error {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.status-info {
    background: rgba(247, 167, 54, 0.14);
    color: #8a5600;
    border: 1px solid rgba(247, 167, 54, 0.3);
}

/* ============================================
   FORM ROWS (SETTINGS PAGE)
   ============================================ */
.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}

.form-row .form-group {
    flex: 1;
}

.divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 32px 0;
}

.subtitle {
    color: #666;
    font-size: 16px;
    margin-top: 8px;
}

/* ============================================
   SETTINGS ICON IN HEADER
   ============================================ */
.settings-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.05);
    color: #222;
    font-size: 18px;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.settings-icon.active {
    background: rgba(0, 0, 0, 0.05);
    color: #222;
}

.settings-icon:hover {
    background: rgba(0, 0, 0, 0.09);
    color: #222;
}

.settings-icon i {
    transition: transform 0.22s ease;
}

.settings-icon:hover i {
    transform: rotate(18deg);
}

/* ============================================
   CONTAINER (SETTINGS PAGE & OTHERS)
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
}

/* ============================================
   HEADER NAVIGATION
   ============================================ */
.header-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header-nav a {
    font-size: 15px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.header-nav a:hover {
    color: #f7a736;
}

.header-nav a.active {
    color: #f7a736;
    font-weight: 600;
}

.header-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #f7a736;
    border-radius: 1px;
}

/* ============================================
   CONTEXT ACTIONS + COLLAB MODAL
   ============================================ */
.context-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.context-action-count {
    font-size: 12px;
    font-weight: 700;
    color: #5c616a;
    line-height: 1;
}

.context-action-btn {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 9px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

a.context-action-btn,
a.context-action-btn:visited {
    color: #1f2937;
    text-decoration: none;
}

.context-action-btn:hover {
    border-color: #f7a736;
    color: #8a5600;
    box-shadow: 0 2px 8px rgba(247, 167, 54, 0.28);
}

a.context-action-btn:hover,
a.context-action-btn:focus-visible {
    color: #8a5600;
    text-decoration: none;
}

.activity-main-link,
.activity-main-link:visited {
    color: #1a1a1a;
    text-decoration: none;
}

.activity-main-link:hover,
.activity-main-link:focus-visible {
    color: #8a5600;
    text-decoration: none;
}

.push-toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.push-toggle-btn.push-enabled {
    border-color: rgba(52, 199, 89, 0.45);
    color: #198a48;
    background: rgba(52, 199, 89, 0.12);
}

.push-toggle-btn.push-disabled {
    border-color: rgba(0, 0, 0, 0.16);
    color: #4b5563;
}

.push-toggle-btn.push-blocked {
    border-color: rgba(255, 59, 48, 0.45);
    color: #c52922;
    background: rgba(255, 59, 48, 0.1);
}

.push-toggle-btn.push-unsupported {
    border-color: rgba(0, 0, 0, 0.12);
    color: #9ca3af;
    background: rgba(0, 0, 0, 0.03);
}

.push-toggle-btn.push-loading {
    border-color: rgba(247, 167, 54, 0.5);
    color: #8a5600;
    background: rgba(247, 167, 54, 0.14);
}

.top-notifications-btn {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.top-notifications-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ff3b30;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.45);
}

.top-notifications-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.26);
    opacity: 0;
    visibility: hidden;
    transition: all 0.18s ease;
    z-index: 1250;
}

.top-notifications-overlay.active {
    opacity: 1;
    visibility: visible;
}

.top-notifications-panel {
    position: fixed;
    top: 72px;
    right: 20px;
    width: min(390px, calc(100vw - 24px));
    max-height: calc(100vh - 92px);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.22);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.18s ease;
    z-index: 1251;
}

.top-notifications-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-notifications-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.top-notifications-title-wrap {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    gap: 8px;
    min-width: 0;
}

.top-notifications-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.top-notifications-inline-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255, 59, 48, 0.12);
    color: #c52922;
    font-size: 11px;
    font-weight: 700;
}

.top-notifications-tools {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    max-width: 100%;
}

.top-notifications-tool-btn {
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: #374151;
    border-radius: 8px;
    padding: 6px 9px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
    text-align: left;
}

.top-notifications-tool-btn:hover {
    border-color: rgba(247, 167, 54, 0.6);
    color: #8a5600;
}

.top-notifications-close {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    background: #fff;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.top-notifications-close:hover {
    border-color: rgba(247, 167, 54, 0.6);
    color: #8a5600;
}

.top-notifications-list {
    overflow: auto;
    padding: 8px 10px 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 120px;
}

.top-notifications-loading,
.top-notifications-empty,
.top-notifications-error {
    padding: 18px 12px;
    font-size: 13px;
    color: #6b7280;
    text-align: center;
}

.top-notifications-group {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b7280;
    margin: 6px 2px 2px;
}

.top-notification-item {
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    padding: 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    cursor: pointer;
}

.top-notification-item:hover {
    border-color: rgba(247, 167, 54, 0.58);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.top-notification-item.is-unread {
    border-left: 3px solid #f7a736;
    background: rgba(247, 167, 54, 0.06);
}

.top-notification-item.is-onboarding {
    border-color: rgba(52, 199, 89, 0.36);
    background: rgba(52, 199, 89, 0.08);
    cursor: default;
}

.top-notification-item.is-onboarding:hover {
    box-shadow: none;
    border-color: rgba(52, 199, 89, 0.36);
}

.top-notification-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.top-notification-context {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    max-width: 100%;
}

.top-notification-context.project {
    background: rgba(59, 130, 246, 0.14);
    color: #1e40af;
}

.top-notification-context.calendar {
    background: rgba(168, 85, 247, 0.15);
    color: #6b21a8;
}

.top-notification-context.system {
    background: rgba(16, 185, 129, 0.14);
    color: #065f46;
}

.top-notification-time {
    font-size: 11px;
    color: #6b7280;
    white-space: nowrap;
}

.top-notification-title {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.top-notification-body {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: #4b5563;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.top-notification-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.top-notifications-foot {
    padding: 8px 12px 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .top-notifications-panel {
        top: 76px;
        right: 10px;
        left: 10px;
        width: auto;
        max-height: calc(100vh - 88px);
    }

    .top-notifications-head {
        align-items: flex-start;
    }

    .top-notifications-tools {
        width: 100%;
        justify-content: space-between;
    }

    .top-notifications-tool-btn {
        flex: 1 1 auto;
    }

    .top-notification-time {
        white-space: normal;
    }

    .top-notifications-tool-btn,
    .top-notifications-close {
        min-height: 34px;
    }
}

.context-action-btn.large {
    width: auto;
    height: auto;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
}

.context-action-btn.participants-add-btn {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    color: #f7a736;
    font-size: 13px;
}

.context-action-btn.participants-add-btn:hover,
.context-action-btn.participants-add-btn:focus-visible {
    border: none;
    background: transparent;
    box-shadow: none;
    color: #141414;
}

.context-actions .participants-indicator+.context-action-btn.participants-add-btn {
    margin-left: -5px;
}

.translate-inline-btn {
    border: none;
    background: transparent;
    color: #f7a736;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 6px;
    text-decoration: none;
}

.translate-inline-btn:hover,
.translate-inline-btn:focus-visible {
    color: #141414;
    outline: none;
}

.collab-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(2px);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.collab-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.collab-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    width: min(760px, calc(100vw - 28px));
    max-height: calc(100vh - 40px);
    overflow: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.25);
    z-index: 1201;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.collab-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.collab-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.collab-modal-type {
    font-size: 12px;
    color: #6b7280;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.collab-modal-title {
    margin: 4px 0 0;
    font-size: 20px;
    line-height: 1.2;
}

.collab-modal-body {
    padding: 14px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.collab-modal-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.collab-composer {
    padding: 12px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
}

.collab-pane {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    padding: 10px;
}

.collab-pane h4 {
    margin: 0 0 8px;
    font-size: 14px;
}

.btn i,
.settings-icon i,
.context-action-btn i,
.project-owner i,
.project-due i,
.task-assignee i,
.task-due i,
.participants-indicator i,
.empty-state-icon i,
.action-icon i,
.status-badge i {
    font-size: 0.95em;
    min-width: 1em;
    text-align: center;
}

.collab-modal-actions .context-action-btn i {
    margin-right: 5px;
}

.crm-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 10, 0.82);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 1400;
}

.crm-lightbox-overlay.active {
    display: flex;
}

.crm-lightbox-content {
    width: min(1080px, 100%);
    max-height: calc(100vh - 60px);
    background: linear-gradient(145deg, #111 0%, #1f1f1f 100%);
    border: 1px solid rgba(247, 167, 54, 0.45);
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.crm-lightbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.crm-lightbox-title {
    color: #f3f4f6;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.crm-lightbox-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.crm-lightbox-btn {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    border: 1px solid rgba(247, 167, 54, 0.45);
    background: rgba(255, 255, 255, 0.08);
    color: #f7a736;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.crm-lightbox-btn:hover {
    background: rgba(247, 167, 54, 0.2);
    border-color: #f7a736;
}

.crm-lightbox-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    min-height: 220px;
    max-height: calc(100vh - 130px);
    overflow: auto;
}

.crm-lightbox-image {
    max-width: 100%;
    max-height: calc(100vh - 180px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ============================================
   USER MENU (HEADER)
   ============================================ */
.user-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-menu .user-email {
    font-size: 14px;
    color: #666;
}

/* ============================================
   CARDS (SETTINGS PAGE)
   ============================================ */
.card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 24px;
}

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
}

.card-header h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

.card-body {
    padding: 24px;
}

.home-screen-card {
    margin-top: -6px;
}

.home-screen-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 14px;
}

.home-screen-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.home-screen-status {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.home-screen-status.is-info {
    background: rgba(0, 122, 255, 0.09);
    color: #0a4ea4;
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.home-screen-status.is-success {
    background: rgba(52, 199, 89, 0.1);
    color: #208a45;
    border: 1px solid rgba(52, 199, 89, 0.26);
}

.home-screen-status.is-warning {
    background: rgba(247, 167, 54, 0.14);
    color: #8a5600;
    border: 1px solid rgba(247, 167, 54, 0.3);
}

/* ============================================
   FORM ACTIONS (SETTINGS FORMS)
   ============================================ */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ============================================
   INPUT LABELS (SETTINGS FORMS)
   ============================================ */
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="password"],
.form-group select {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    background: white;
    color: #1a1a1a;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #f7a736;
    box-shadow: 0 0 0 4px rgba(247, 167, 54, 0.2);
}

.translation-settings-disabled {
    opacity: 0.62;
}

.translation-settings-disabled .card-body {
    pointer-events: none;
}

.calendar-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
}

.calendar-grid-head {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 8px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.calendar-grid-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day-cell {
    display: block;
    min-height: 84px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    padding: 8px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.calendar-day-cell:hover {
    border-color: #f7a736;
    transform: translateY(-1px);
}

.calendar-day-cell.muted {
    opacity: 0.45;
}

.calendar-day-cell.today {
    border-color: #141414;
}

.calendar-day-cell.selected {
    border-color: #f7a736;
    box-shadow: 0 0 0 2px rgba(247, 167, 54, 0.15);
}

.calendar-day-cell .day-number {
    font-size: 14px;
    font-weight: 700;
}

.calendar-day-cell .day-count {
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
}

.column-header-tools {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.column-count.column-count-overdue {
    color: #b42318;
    border: 1px solid rgba(220, 38, 38, 0.3);
    background: rgba(255, 59, 48, 0.14);
}

.mobile-column-toggle {
    display: none;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 9px;
    background: #fff;
    color: #4b5563;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-column-toggle:hover,
.mobile-column-toggle:focus-visible {
    color: #8a5600;
    border-color: #f7a736;
    box-shadow: 0 2px 8px rgba(247, 167, 54, 0.24);
    outline: none;
}

.mobile-column-toggle i {
    transition: transform 0.2s ease;
}

.board-column.mobile-collapsed .mobile-column-toggle i,
.calendar-mobile-status-section.mobile-collapsed .mobile-column-toggle i {
    transform: rotate(-90deg);
}

.calendar-month-list-card.mobile-collapsed .calendar-month-mobile-toggle i {
    transform: rotate(-90deg);
}

.calendar-mobile-day-date {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.calendar-mobile-day-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.calendar-mobile-day-columns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calendar-mobile-day-columns .board-column,
.calendar-month-list-mobile .board-column {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 14px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.calendar-mobile-day-columns .column-header,
.calendar-month-list-mobile .column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.calendar-mobile-day-columns .column-title,
.calendar-month-list-mobile .column-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.calendar-mobile-day-columns .column-count,
.calendar-month-list-mobile .column-count {
    background: rgba(0, 0, 0, 0.08);
    color: #374151;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.calendar-mobile-day-columns .column-content,
.calendar-month-list-mobile .column-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calendar-month-list-mobile {
    display: none;
}

.calendar-month-list-table {
    display: block;
}

.calendar-month-mobile-toggle {
    display: none;
}

@media (max-width: 980px) {
    .calendar-layout {
        grid-template-columns: 1fr;
    }

    .home-screen-actions {
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .collab-modal {
        top: auto;
        bottom: 0;
        left: 50%;
        width: calc(100vw - 10px);
        max-height: 92vh;
        max-height: 92dvh;
        border-radius: 18px 18px 0 0;
        transform: translate(-50%, 105%);
    }

    .collab-modal.active {
        transform: translate(-50%, 0);
    }

    .collab-modal-header {
        padding: 14px 14px 10px;
    }

    .collab-modal-body {
        padding: 10px 12px calc(14px + env(safe-area-inset-bottom, 0px));
        max-height: calc(92dvh - 84px);
        overflow: auto;
    }

    .collab-modal-actions .context-action-btn.large {
        flex: 1 1 calc(50% - 4px);
        justify-content: center;
    }

    .calendar-day-card {
        display: none;
    }

    .calendar-month-mobile-toggle {
        display: inline-flex;
    }

    .calendar-month-list-card.mobile-collapsed #calendarMonthListBody {
        display: none;
    }

    .mobile-column-toggle {
        display: inline-flex;
    }

    .calendar-mobile-status-section.mobile-collapsed .column-content,
    .board-column.mobile-collapsed .column-content {
        display: none;
    }
}