/**
 * BDO System - Admin CSS
 * Bazuje na CRM Visual Style Guide
 * Aktualizacja: 2026-04-21
 */

/* ============================================
   1) DESIGN TOKENS (z CRM)
   ============================================ */
:root {
    /* Kolory bazowe */
    --bg-app: #f2f2f3;
    --text-main: #141414;
    --text-secondary: #666;
    --brand-dark-1: #151515;
    --brand-dark-2: #2b2b2b;

    /* Akcenty i statusy */
    --accent: #f7a736;
    --success: #34c759;
    --warning: #ff9500;
    --error: #ff3b30;

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 18px;

    /* Cienie */
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-dropdown: 0 10px 26px rgba(0, 0, 0, 0.12);

    /* Animacje */
    --ease-fast: all 0.2s ease;
    --ease-drawer: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --max-width: 1400px;
    --header-height: 64px;
}

/* ============================================
   2) GLOBAL RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'San Francisco', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-main);
    background: var(--bg-app);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   3) HEADER (Glass Effect)
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    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);
    height: var(--header-height);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--ease-fast);
}

.brand:hover {
    color: var(--accent);
}

.brand-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--brand-dark-1), var(--brand-dark-2));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 24px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--ease-fast);
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
}

.nav-link.active {
    background: white;
    color: var(--accent);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px;
    border-radius: 999px;
    background: #e7e7e7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.lang-switch-option {
    min-width: 48px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #6d6d6d;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: var(--ease-fast);
}

.lang-switch-option:hover {
    color: #3d3d3d;
}

.lang-switch-option.is-active {
    color: #2f2f2f;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 13px;
}

.user-name {
    font-weight: 600;
    color: var(--text-main);
}

.user-role {
    color: var(--text-secondary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    background: rgba(247, 167, 54, 0.1);
    border-radius: 6px;
    font-weight: 600;
}

/* ============================================
   4) MAIN CONTAINER
   ============================================ */
.main-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 32px 24px;
}

/* ============================================
   5) PAGE HEADER
   ============================================ */
.page-header {
    margin-bottom: 32px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: normal;
}

/* ============================================
   6) BUTTONS (CRM Style)
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--ease-fast);
    font-family: inherit;
}

.btn-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-dark-1), var(--brand-dark-2));
    color: white;
    box-shadow: var(--shadow-card);
}

.btn-primary:hover {
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: var(--bg-app);
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-danger {
    background: var(--error);
    color: white;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn.is-disabled,
.btn:disabled {
    opacity: 0.55;
    pointer-events: none;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-note {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ============================================
   7) CARDS
   ============================================ */
.card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--ease-fast);
}

.card:hover {
    box-shadow: var(--shadow-hover);
}

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.card-body {
    padding: 24px;
}

.card-footer {
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ============================================
   8) FORMS
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.form-label.required::after {
    content: '*';
    color: var(--error);
    margin-left: 4px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: var(--ease-fast);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(247, 167, 54, 0.2);
}

.form-control::placeholder {
    color: #999;
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.form-section {
    margin-bottom: 8px;
}

.form-section h3 {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-help {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.error-message {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--error);
    font-weight: 600;
}

.has-error .form-control {
    border-color: rgba(255, 59, 48, 0.5);
}

.has-error .form-control:focus {
    border-color: var(--error);
    box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.16);
}

.form-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* ============================================
   9) TABLE
   ============================================ */
.table-container {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    padding: 10px;
}

.table-container th,
.table-container td {
    padding: 5px 10px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table thead {
    background: rgba(0, 0, 0, 0.02);
}

.table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.table-sort-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    transition: var(--ease-fast);
}

.table-sort-link:hover {
    color: var(--text-main);
}

.table-sort-link .sort-indicator {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: linear-gradient(180deg, #ffffff, #f0f0f0);
    color: #8f8f8f;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    transition: var(--ease-fast);
}

.table-sort-link:hover .sort-indicator {
    transform: translateY(-1px);
    border-color: rgba(0, 0, 0, 0.2);
    color: #5f5f5f;
}

.table-sort-link .sort-icon {
    width: 12px;
    height: 12px;
    display: block;
    fill: currentColor;
}

.table-sort-link .sort-icon-dual {
    fill: none;
}

.table-sort-link .sort-icon-dual path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.table-sort-link.is-active {
    color: var(--text-main);
}

.table-sort-link.is-active .sort-indicator {
    background: linear-gradient(135deg, rgba(247, 167, 54, 0.33), rgba(247, 167, 54, 0.16));
    border-color: rgba(156, 99, 24, 0.28);
    color: #4a3420;
    box-shadow: 0 6px 14px rgba(247, 167, 54, 0.2);
}

.table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 14px;
}

.table tbody tr:hover {
    background: rgba(247, 167, 54, 0.04);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.actions-column {
    width: 132px;
}

.action-buttons {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.action-buttons form {
    margin: 0;
}

.btn-icon-only {
    width: 34px;
    height: 34px;
    padding: 0;
    justify-content: center;
    border-radius: 10px;
}

.btn-icon-only svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.table-scroll-mobile {
    overflow-x: auto;
}

.filters-hint {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-secondary);
}

.products-bulk-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.products-bulk-actions form {
    margin: 0;
}

.products-bulk-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    color: currentColor;
}

.products-select-column {
    width: 44px;
    text-align: center;
}

.products-select-checkbox {
    width: 16px;
    height: 16px;
    accent-color: var(--brand-dark-1);
    cursor: pointer;
}

.table tbody tr.is-selected {
    background: rgba(247, 167, 54, 0.12);
}

/* ============================================
   10) BADGES
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-draft {
    background: rgba(255, 149, 0, 0.15);
    color: var(--warning);
}

.badge-ready {
    background: rgba(52, 199, 89, 0.15);
    color: var(--success);
}

.badge-admin {
    background: rgba(247, 167, 54, 0.15);
    color: var(--accent);
}

.badge-editor {
    background: rgba(52, 199, 89, 0.15);
    color: var(--success);
}

.badge-viewer {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
}

/* ============================================
   11) ALERTS (iOS Style)
   ============================================ */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.3s ease;
    border: none;
}

.alert::before {
    content: '';
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.alert-success {
    background: linear-gradient(135deg, #34c759 0%, #30d158 100%);
    color: white;
}

.alert-success::before {
    content: '✓';
    background: rgba(255, 255, 255, 0.25);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.alert-error {
    background: linear-gradient(135deg, #ff3b30 0%, #ff453a 100%);
    color: white;
}

.alert-error::before {
    content: '✕';
    background: rgba(255, 255, 255, 0.25);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.alert-warning {
    background: linear-gradient(135deg, #ff9500 0%, #ff9f0a 100%);
    color: white;
}

.alert-warning::before {
    content: '⚠';
    background: rgba(255, 255, 255, 0.25);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.alert-info {
    background: linear-gradient(135deg, #007aff 0%, #0a84ff 100%);
    color: white;
}

.alert-info::before {
    content: 'ℹ';
    background: rgba(255, 255, 255, 0.25);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Alert Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   12) ACTIONS BAR
   ============================================ */
.actions-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.actions-left,
.actions-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.actions-bar .btn:hover,
.actions-bar .btn:focus-visible {
    background: #000;
    border-color: #000;
    color: #fff;
}

.export-dropdown {
    position: relative;
}

.export-dropdown-toggle {
    min-width: 170px;
    justify-content: space-between;
    gap: 10px;
}

.export-caret {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.export-dropdown-toggle[aria-expanded="true"] .export-caret {
    transform: rotate(180deg);
}

.export-dropdown-menu {
    margin-top: 10px;
    min-width: 260px;
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    box-shadow: var(--shadow-hover);
    background: #fff;
}

.export-dropdown-label {
    padding: 8px 10px 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-secondary);
}

.export-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text-main);
    transition: var(--ease-fast);
}

.export-dropdown-item span {
    font-size: 14px;
    font-weight: 700;
}

.export-dropdown-item small {
    font-size: 12px;
    color: var(--text-secondary);
    transition: var(--ease-fast);
}

.export-dropdown-item:hover,
.export-dropdown-item:focus {
    background: #000;
    color: #fff;
}

.export-dropdown-item:hover small,
.export-dropdown-item:focus small {
    color: rgba(255, 255, 255, 0.75);
}

.export-dropdown-menu .dropdown-divider {
    margin: 6px 2px;
    border-top-color: rgba(0, 0, 0, 0.08);
}

/* ============================================
   13) GRID (dla kart produktów)
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--ease-fast);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.product-card-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.product-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.product-card-meta {
    font-size: 12px;
    color: var(--text-secondary);
}

.product-card-body {
    padding: 20px;
}

.product-card-footer {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ============================================
   14) TABS (dla widoku szczegółów)
   ============================================ */
.tabs {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
    display: flex;
    gap: 8px;
}

.tabs-list {
    display: flex;
    gap: 8px;
    list-style: none;
}

.tab-button {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: var(--ease-fast);
}

.tab-button:hover {
    color: var(--text-main);
}

.tab-button.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.tab-contents {
    margin-top: 24px;
}

.tab-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.tabs-enhanced .tab-content {
    display: none;
}

.tabs-enhanced .tab-content.active {
    display: block;
}

/* ============================================
   15A) USER PERMISSIONS
   ============================================ */
.users-create-form {
    display: grid;
    grid-template-columns: minmax(260px, 2fr) minmax(180px, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.users-create-form .form-group {
    margin-bottom: 0;
}

.users-table .form-control {
    min-width: 180px;
    padding: 8px 10px;
    font-size: 13px;
}

.users-table .actions-column {
    width: 190px;
}

.users-row-actions {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.users-you-note {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
}

.users-email-readonly {
    background: #f7f7f7;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   15) MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .header-right {
        gap: 10px;
    }

    .lang-switch-option {
        min-width: 42px;
        height: 30px;
        font-size: 11px;
    }

    .main-container {
        padding: 20px 16px;
    }

    .header-container {
        padding: 0 16px;
    }

    .page-title {
        font-size: 24px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .actions-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .actions-left,
    .actions-right {
        width: 100%;
        justify-content: space-between;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-section h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .form-actions .btn {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }

    .table-container {
        overflow-x: auto;
    }

    .table-scroll-mobile .table {
        min-width: 680px;
    }

    .table th,
    .table td {
        padding: 12px 14px;
        white-space: nowrap;
    }

    .actions-column {
        width: 110px;
    }

    .action-buttons {
        gap: 6px;
    }

    .btn-icon-only {
        width: 32px;
        height: 32px;
        border-radius: 9px;
    }

    .btn-icon-only svg {
        width: 14px;
        height: 14px;
    }

    .user-info {
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
    }

    .users-create-form {
        grid-template-columns: 1fr;
    }

    .users-create-form .btn {
        width: 100%;
        justify-content: center;
    }

    .users-table .form-control {
        min-width: 150px;
    }

    .products-select-column {
        width: 40px;
    }
}

@media (max-width: 980px) {
    .header {
        height: auto;
    }

    .header-container {
        padding-top: 10px;
        padding-bottom: 10px;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .header-left,
    .header-right {
        width: 100%;
        justify-content: space-between;
    }

    .main-nav {
        margin-left: 0;
        gap: 6px;
        flex-wrap: wrap;
    }

    .nav-link {
        padding: 7px 12px;
    }
}

/* ============================================
   16) UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.text-muted {
    color: var(--text-secondary);
}

.text-success {
    color: var(--success);
}

.text-error {
    color: var(--error);
}

.text-warning {
    color: var(--warning);
}