.fi-sidebar {
    @apply bg-red-50 dark:bg-red-950 !important;
}

ul.fi-sidebar-nav-groups.-mx-2.flex.flex-col.gap-y-7 {
    row-gap: 0.75rem !important;
}

.fi-simple-main {
    max-width: 48rem !important;
    width: 100% !important;
}

/* ===================================================================
   DASHBOARD STYLES — STUNNING REDESIGN
   =================================================================== */

/* --- Welcome Hero Banner --- */
.fi-welcome-hero {
    position: relative;
    background: linear-gradient(135deg, #0c1222 0%, #162032 40%, #0e1a2e 100%);
    border-radius: 1.25rem;
    padding: 2rem 2.25rem 1.75rem;
    overflow: hidden;
    border: 1px solid rgba(53, 181, 176, 0.1);
}

.fi-welcome-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 85% 20%, rgba(53, 181, 176, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.fi-welcome-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.fi-welcome-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.fi-welcome-date-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.fi-welcome-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0;
}

.fi-welcome-sub {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0.25rem 0 0;
}

.fi-welcome-team-name {
    color: #35b5b0;
    font-weight: 600;
}

/* --- KPI Cards in Hero --- */
.fi-welcome-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    width: 100%;
}

.fi-welcome-kpi {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
}

.fi-welcome-kpi:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(53, 181, 176, 0.2);
    transform: translateY(-1px);
}

.fi-welcome-kpi-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fi-kpi-revenue { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.fi-kpi-orders { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.fi-kpi-pending { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.fi-kpi-products { background: rgba(53, 181, 176, 0.15); color: #35b5b0; }

.fi-welcome-kpi-data {
    display: flex;
    flex-direction: column;
}

.fi-welcome-kpi-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.fi-welcome-kpi-label {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* --- Shared Dashboard Card --- */
.fi-dashboard-card,
.fi-dashboard-outbound,
.fi-dashboard-stock-health {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e8ecf1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
}

.fi-dashboard-card:hover,
.fi-dashboard-outbound:hover,
.fi-dashboard-stock-health:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.03);
    border-color: #d1d9e2;
    transform: translateY(-1px);
}

/* --- Section Headers --- */
.fi-dashboard-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.fi-dashboard-section-title-group {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.fi-dashboard-section-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fi-dashboard-section-icon-blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.fi-dashboard-section-icon-green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.fi-dashboard-section-icon-indigo { background: rgba(99, 102, 241, 0.1); color: #6366f1; }
.fi-dashboard-section-icon-emerald { background: rgba(53, 181, 176, 0.1); color: #35b5b0; }

.fi-dashboard-section-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

/* --- Badges --- */
.fi-dashboard-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.fi-dashboard-badge-green { background: rgba(16, 185, 129, 0.1); color: #059669; }
.fi-dashboard-badge-blue { background: rgba(59, 130, 246, 0.1); color: #2563eb; }
.fi-dashboard-badge-gray { background: rgba(100, 116, 139, 0.08); color: #475569; }

/* --- Fulfilment Pipeline --- */
.fi-dashboard-pipeline {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}

.fi-dashboard-pipeline-stage {
    flex: 1;
    min-width: 0;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.fi-dashboard-pipeline-stage:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

.fi-dashboard-pipeline-stage-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.fi-dashboard-pipeline-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px currentColor;
}

.fi-pipeline-amber { background: #f59e0b; color: #f59e0b; }
.fi-pipeline-blue { background: #3b82f6; color: #3b82f6; }
.fi-pipeline-teal { background: #35b5b0; color: #35b5b0; }
.fi-pipeline-red { background: #ef4444; color: #ef4444; }

.fi-dashboard-pipeline-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.fi-dashboard-pipeline-value {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.625rem;
}

.fi-pipeline-red-text { color: #ef4444; }

.fi-dashboard-pipeline-bar {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.fi-dashboard-pipeline-bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fi-pipeline-bg-amber { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.fi-pipeline-bg-blue { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.fi-pipeline-bg-teal { background: linear-gradient(90deg, #35b5b0, #5eead4); }

.fi-dashboard-pipeline-arrow {
    flex-shrink: 0;
    color: #cbd5e1;
    padding-top: 2rem;
}

.fi-pipeline-overdue {
    background: rgba(239, 68, 68, 0.04);
    border-color: rgba(239, 68, 68, 0.15);
}

/* --- Sales Overview --- */
.fi-dashboard-sales-hero { margin-bottom: 1rem; }

.fi-dashboard-sales-today {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.fi-dashboard-sales-today-label {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fi-dashboard-sales-today-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.fi-dashboard-sales-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    margin-bottom: 0.75rem;
}

.fi-dashboard-sales-item {
    padding: 0.625rem 0.75rem;
    border-radius: 0.5rem;
    background: #f8fafc;
}

.fi-dashboard-sales-item-label {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.fi-dashboard-sales-item-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #334155;
    letter-spacing: -0.01em;
}

.fi-dashboard-sales-trend {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.fi-trend-up { background: rgba(16, 185, 129, 0.1); color: #059669; }
.fi-trend-down { background: rgba(239, 68, 68, 0.1); color: #dc2626; }

/* --- Inbound Stats Grid --- */
.fi-dashboard-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
}

.fi-dashboard-stat-item {
    text-align: center;
    padding: 1rem 0.75rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.fi-dashboard-stat-item:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

.fi-dashboard-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.fi-stat-danger { color: #ef4444 !important; }
.fi-stat-info { color: #6366f1; }

.fi-dashboard-stat-label {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 600;
    margin-top: 0.125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* --- Stock Health Cards --- */
.fi-dashboard-stock-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    gap: 0.625rem;
}

.fi-dashboard-stock-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.fi-dashboard-stock-card:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
    transform: translateY(-1px);
}

.fi-stock-card-warn {
    background: rgba(245, 158, 11, 0.04);
    border-color: rgba(245, 158, 11, 0.15);
}

.fi-stock-card-danger {
    background: rgba(239, 68, 68, 0.04);
    border-color: rgba(239, 68, 68, 0.15);
}

.fi-stock-card-value {
    background: rgba(53, 181, 176, 0.04);
    border-color: rgba(53, 181, 176, 0.15);
}

.fi-stock-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fi-stock-icon-teal { background: rgba(53, 181, 176, 0.12); color: #35b5b0; }
.fi-stock-icon-blue { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.fi-stock-icon-amber { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.fi-stock-icon-red { background: rgba(239, 68, 68, 0.12); color: #ef4444; }
.fi-stock-icon-orange { background: rgba(249, 115, 22, 0.12); color: #f97316; }
.fi-stock-icon-gray { background: rgba(100, 116, 139, 0.12); color: #64748b; }

.fi-stock-card-label {
    display: block;
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.fi-stock-card-value-text {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* --- Chart & Table Widget Overrides --- */
.fi-wi-chart {
    border-radius: 1rem !important;
    border: 1px solid #e8ecf1 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.25s ease;
}

.fi-wi-chart:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06) !important;
    transform: translateY(-1px);
}

.fi-wi-table {
    border-radius: 1rem !important;
    border: 1px solid #e8ecf1 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03) !important;
    overflow: hidden;
    transition: all 0.25s ease;
}

.fi-wi-table:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06) !important;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .fi-welcome-kpis {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fi-welcome-hero {
        padding: 1.25rem;
    }

    .fi-welcome-heading {
        font-size: 1.25rem;
    }

    .fi-welcome-top {
        flex-direction: column;
        gap: 0.5rem;
    }

    .fi-welcome-kpis {
        grid-template-columns: repeat(2, 1fr);
    }

    .fi-dashboard-pipeline {
        flex-wrap: wrap;
    }

    .fi-dashboard-pipeline-arrow {
        display: none;
    }

    .fi-dashboard-pipeline-stage {
        flex-basis: calc(50% - 0.375rem);
    }

    .fi-dashboard-stock-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .fi-welcome-kpis {
        grid-template-columns: 1fr;
    }
}

/* ===================================================================
   REGISTRATION SPLIT-SCREEN LAYOUT
   =================================================================== */

.fi-register-split-layout {
    display: flex;
    min-height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    background: #ffffff;
}

/* --- Left Brand Panel --- */
.fi-register-brand-panel {
    display: none;
    width: 42%;
    min-width: 420px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.fi-register-brand-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(53, 181, 176, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(53, 181, 176, 0.1) 0%, transparent 50%);
    animation: brandGlow 8s ease-in-out infinite alternate;
}

@keyframes brandGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-2%, -2%) scale(1.05); }
}

.fi-register-brand-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2335b5b0' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.fi-register-brand-inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 3rem 2.5rem;
    gap: 2rem;
}

.fi-register-brand-logo img {
    height: 2.25rem;
    filter: brightness(0) invert(1);
}

.fi-register-brand-hero {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fi-register-brand-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.025em;
}

.fi-register-brand-subtitle {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* --- Feature List --- */
.fi-register-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.fi-register-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.fi-register-feature-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    background: rgba(53, 181, 176, 0.12);
    border: 1px solid rgba(53, 181, 176, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #35b5b0;
}

.fi-register-feature-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.15rem;
}

.fi-register-feature-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
}

/* --- Trial Badge --- */
.fi-register-trial-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: rgba(53, 181, 176, 0.08);
    border: 1px solid rgba(53, 181, 176, 0.15);
    color: #35b5b0;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: auto;
}

.fi-register-trial-badge svg {
    flex-shrink: 0;
}

/* --- Right Form Panel --- */
.fi-register-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 2rem 1rem;
    background: #f8fafc;
}

.fi-register-form-inner {
    width: 100%;
    max-width: 36rem;
}

/* Mobile logo (shown only on small screens) */
.fi-register-mobile-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* --- Form Styling Overrides --- */
/* Wizard container styling */
.fi-register-split-layout .fi-wizard {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.fi-register-split-layout .fi-wizard-header {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0;
    margin-bottom: 0;
    overflow: hidden !important;
}

/* Submit button full width */
.fi-register-split-layout .fi-form-actions {
    margin-top: 1rem;
}

.fi-register-split-layout .fi-btn {
    transition: all 0.2s ease;
}

.fi-register-split-layout .fi-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(53, 181, 176, 0.3);
}

/* --- Form Header --- */
.fi-register-form-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.fi-register-form-heading {
    font-size: 1.625rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.025em;
    margin-bottom: 0.375rem;
}

.fi-register-form-subheading {
    font-size: 0.9rem;
    color: #64748b;
}

.fi-register-signin-link {
    color: #35b5b0;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease;
}

.fi-register-signin-link:hover {
    color: #2a9690;
    text-decoration: underline;
}

.fi-register-form-body {
    background: transparent;
    padding: 0;
}

/* Remove double container - Filament wizard already has its own card */
.fi-register-split-layout .fi-simple-page {
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    max-width: 100% !important;
}

/* Wizard step tabs - prevent horizontal scrollbar */
.fi-register-split-layout .fi-sc-wizard-header {
    overflow-x: hidden !important;
    grid-auto-columns: 1fr;
}

/* Keep clear action inline with Filament custom selects on registration. */
.fi-register-split-layout .fi-select-input .fi-select-input-btn {
    align-items: center;
    padding-inline-end: 3.5rem !important;
}

.fi-register-split-layout .fi-select-input .fi-select-input-value-ctn {
    min-width: 0;
    flex-wrap: nowrap;
}

.fi-register-split-layout .fi-select-input .fi-select-input-value-label,
.fi-register-split-layout .fi-select-input .fi-select-input-placeholder {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fi-register-split-layout .fi-select-input .fi-select-input-value-remove-btn {
    position: absolute;
    inset-inline-end: 2rem;
    top: 50%;
    z-index: 1;
    display: inline-flex;
    width: 1rem;
    height: 1rem;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}

.fi-register-split-layout .fi-select-input .fi-select-input-value-remove-btn svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* Legacy Choices select fallback: keep clear action before the dropdown arrow. */
.fi-register-split-layout .choices__inner {
    padding-inline-end: 3.5rem !important;
}

.fi-register-split-layout .choices__list--single {
    display: block;
    min-width: 0;
    overflow: hidden;
    padding-inline-end: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fi-register-split-layout .choices[data-type*="select-one"] .choices__button {
    position: absolute;
    inset-inline-end: 2rem;
    top: 50%;
    display: inline-flex;
    width: 1rem;
    height: 1rem;
    margin-inline-end: 0;
    transform: translateY(-50%);
}

/* --- Responsive --- */
@media (min-width: 1024px) {
    .fi-register-brand-panel {
        display: flex;
    }

    .fi-register-mobile-logo {
        display: none;
    }

    .fi-register-form-panel {
        padding: 2rem 3rem;
    }
}

@media (min-width: 1280px) {
    .fi-register-brand-inner {
        padding: 4rem 3.5rem;
        gap: 2.5rem;
    }

    .fi-register-brand-title {
        font-size: 2.25rem;
    }
}

.fi-sidebar::-webkit-scrollbar {
    width: 8px;
    background: #35b5b0;
    /* Tailwind gray-100 */
}

.fi-sidebar::-webkit-scrollbar-thumb {
    background: #35b5b0;
    /* Tailwind gray-50 */
    border-radius: 4px;
}

.fi-sidebar::-webkit-scrollbar-thumb:hover {
    background: #35b5b0;
    /* Tailwind gray-50 */
}

/* Firefox */
.fi-sidebar {
    scrollbar-color: #35b5b0 #f3f4f6;
    scrollbar-width: thin;
}

.dark .fi-sidebar {
    scrollbar-color: #35b5b0 #23272f;
    scrollbar-width: thin;
}

.fi-btn-color-primary {
    --tw-bg-opacity: 1;
    background-color: #35b5b0 !important;
}

.fi-btn-color-primary .fi-btn-label {
    color: white !important;
}

.dark .fi-btn-color-primary .fi-btn-label {
    color: black !important;
}

.fi-btn-label {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.fi-fo-toggle.fi-color-custom {
    background-color: #35b5b0 !important;
}

.fi-sidebar-item-active .fi-sidebar-item-button,
.fi-topbar-item-active .fi-topbar-item-button {
    background-color: #35b5b0 !important;
}

.fi-sidebar-item-active a svg,
.fi-topbar-item-active a svg {
    color: white !important;
}

.fi-sidebar-item-active a span,
.fi-topbar-item-active a span {
    color: white !important;
}

/* ------------- */
/*  */
/*  */
/*  */
/*  */
/*  */

a[x-effect*="Return"] {
    opacity: 0.5 !important;
    pointer-events: none !important;
}

a[x-effect*="Write"] {
    opacity: 0.5 !important;
    pointer-events: none !important;
}
