/* ==========================================================================
   MAYAK ERP & POS - Custom Admin Styles (Unfold Enhancements)
   ========================================================================== */

/* 1. Material Icons -> Material Symbols Outlined Compatibility */
.material-icons,
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    vertical-align: middle;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* 2. Setup Wizard & Onboarding Banner Styles */
.wizard-hero-banner {
    background: linear-gradient(135deg, #09203f 0%, #16365c 45%, #0284c7 100%) !important;
    color: #ffffff !important;
    border-radius: 1.5rem;
    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 32px -8px rgba(2, 132, 199, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wizard-hero-banner h1,
.wizard-hero-banner h2 {
    color: #ffffff !important;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

.wizard-hero-banner p {
    color: #e0f2fe !important;
    margin-top: 0.35rem;
    line-height: 1.5;
}

.wizard-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(186, 230, 253, 0.35);
    color: #bae6fd;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}

.wizard-progress-track {
    width: 100%;
    height: 12px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 2px;
    overflow: hidden;
}

.wizard-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b 0%, #10b981 100%);
    border-radius: 9999px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.btn-wizard-tour {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: #0f172a !important;
    font-weight: 800;
    font-size: 0.8125rem;
    padding: 0.65rem 1.15rem;
    border-radius: 0.875rem;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-wizard-tour:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.45);
}

.btn-wizard-demo {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 0.65rem 1.15rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-wizard-demo:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    transform: translateY(-1px);
}

/* 3. Header Branch Switcher Select */
.branch-switcher-select {
    padding-left: 1.75rem !important;
    padding-right: 1.5rem !important;
    height: 30px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    border-radius: var(--border-radius, 6px) !important;
    border: 1px solid var(--color-base-200, #e2e8f0) !important;
    background-color: var(--color-base-50, #f8fafc) !important;
    color: var(--color-font-default-light, #1e293b) !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    outline: none !important;
    line-height: 1 !important;
    transition: all 0.15s ease !important;
}

.branch-switcher-select:hover {
    background-color: var(--color-base-100, #f1f5f9) !important;
    border-color: var(--color-base-300, #cbd5e1) !important;
}

.branch-switcher-select:focus {
    border-color: var(--color-primary-600, #0284c7) !important;
    box-shadow: 0 0 0 1px var(--color-primary-600, #0284c7) !important;
}

.dark .branch-switcher-select,
:is(.dark .branch-switcher-select) {
    border-color: var(--color-base-700, #334155) !important;
    background-color: var(--color-base-800, #1e293b) !important;
    color: var(--color-font-default-dark, #f1f5f9) !important;
}

.dark .branch-switcher-select:hover,
:is(.dark .branch-switcher-select:hover) {
    background-color: var(--color-base-700, #334155) !important;
    border-color: var(--color-base-600, #475569) !important;
}

