/* ============ 基础 ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 14px;
    color: #1f2937;
    background: #f0f2f5;
    line-height: 1.5;
    min-height: 100vh;
}
a { color: #ff6b35; text-decoration: none; }
a:hover { color: #e55a26; }
button { font-family: inherit; }

/* ============ 应用整体布局 ============ */
.app-layout {
    display: flex;
    min-height: 100vh;
}

/* ============ 左侧导航 ============ */
.sidebar {
    width: 240px;
    background: #fff;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    flex-shrink: 0;
}
.sidebar-brand {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f0f2f5;
}
.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}
.logo-icon svg { width: 22px; height: 22px; }
.brand-title { font-size: 16px; font-weight: 700; color: #1f2937; line-height: 1.2; }
.brand-badge {
    display: inline-block;
    padding: 1px 7px;
    font-size: 11px;
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    color: #fff;
    border-radius: 4px;
    margin-left: 4px;
    font-weight: 600;
    vertical-align: middle;
}

.sidebar-nav {
    flex: 1;
    padding: 12px 8px;
    overflow-y: auto;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #6b7280;
    cursor: pointer;
    margin-bottom: 2px;
    transition: all 0.15s;
    font-size: 14px;
    text-decoration: none;
}
.nav-link:hover {
    background: #f9fafb;
    color: #1f2937;
}
.nav-link.active {
    background: linear-gradient(90deg, #fff5f0, #fff);
    color: #ff6b35;
    font-weight: 600;
    position: relative;
}
.nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: #ff6b35;
    border-radius: 0 2px 2px 0;
}
.nav-icon { width: 18px; height: 18px; flex-shrink: 0; }

.sidebar-promo {
    margin: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #fff5f0, #fce7d2);
    border-radius: 12px;
    text-align: center;
}
.promo-icon {
    width: 48px; height: 48px;
    margin: 0 auto 8px;
    background: #fff;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.15);
}
.promo-icon svg { width: 28px; height: 28px; color: #ff6b35; }
.promo-title { font-weight: 700; font-size: 13px; color: #1f2937; margin-bottom: 2px; }
.promo-desc { font-size: 12px; color: #6b7280; margin-bottom: 8px; line-height: 1.4; }
.promo-link { font-size: 12px; color: #ff6b35; font-weight: 500; }

/* ============ 主区域 ============ */
.main-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.topbar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}
.icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    position: relative;
    color: #6b7280;
    transition: all 0.15s;
}
.icon-btn:hover { background: #f3f4f6; color: #1f2937; }
.icon-btn svg { width: 20px; height: 20px; display: block; }
.icon-btn .dot {
    position: absolute;
    top: 6px; right: 6px;
    width: 8px; height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #fff;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 4px 12px 4px 4px;
    border-radius: 30px;
    transition: all 0.15s;
}
.user-menu:hover { background: #f9fafb; }
.avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffa07a, #ff6b35);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.user-name { font-weight: 500; font-size: 13px; color: #1f2937; }
.user-role {
    background: #fff5f0;
    color: #ff6b35;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* ============ 内容区 ============ */
.content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

/* ============ 卡片 ============ */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
}
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
}
.card-title { font-size: 15px; font-weight: 600; color: #1f2937; margin: 0; }
.card-title-meta { font-size: 12px; color: #9ca3af; font-weight: normal; margin-left: 8px; }

.row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.row .card { margin-bottom: 0; }

/* ============ 系统状态 ============ */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fafbfc;
    border-radius: 10px;
}
.stat-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-icon-blue   { background: #dbeafe; color: #2563eb; }
.stat-icon-green  { background: #d1fae5; color: #059669; }
.stat-icon-orange { background: #fed7aa; color: #ea580c; }
.stat-icon-red    { background: #fecaca; color: #dc2626; }
.stat-icon-purple { background: #e9d5ff; color: #9333ea; }
.stat-icon-gray   { background: #f3f4f6; color: #6b7280; }
.stat-num { font-size: 22px; font-weight: 700; color: #1f2937; line-height: 1.2; }
.stat-label { font-size: 12px; color: #6b7280; margin-top: 2px; }

/* ============ 表单 ============ */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; color: #6b7280; margin-bottom: 6px; font-weight: 500; }
.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    background: #fafbfc;
    color: #1f2937;
    font-family: inherit;
    transition: all 0.15s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: #ff6b35;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.form-textarea {
    min-height: 96px;
    font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, monospace;
    font-size: 12px;
    resize: vertical;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ============ 按钮 ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
    line-height: 1;
}
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.btn svg { width: 14px; height: 14px; }
.btn-primary {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    color: #fff;
}
.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff7e35, #e55a26);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}
.btn-success { background: #10b981; color: #fff; }
.btn-success:hover:not(:disabled) { background: #059669; }
.btn-danger { background: #ef4444; color: #fff; }
.btn-danger:hover:not(:disabled) { background: #dc2626; }
.btn-secondary { background: #fff; color: #6b7280; border: 1px solid #e5e7eb; }
.btn-secondary:hover:not(:disabled) { background: #f9fafb; color: #1f2937; border-color: #d1d5db; }
.btn-link {
    background: transparent;
    color: #ff6b35;
    padding: 4px 8px;
    border: none;
}
.btn-link:hover:not(:disabled) { background: #fff5f0; }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-block { display: flex; width: 100%; }

/* ============ 徽章 ============ */
.badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    border-radius: 4px;
    font-weight: 500;
    line-height: 1.4;
}
.badge-success { background: #d1fae5; color: #059669; }
.badge-warning { background: #fed7aa; color: #ea580c; }
.badge-danger  { background: #fecaca; color: #dc2626; }
.badge-info    { background: #dbeafe; color: #2563eb; }
.badge-purple  { background: #e9d5ff; color: #9333ea; }
.badge-gray    { background: #f3f4f6; color: #6b7280; }

/* ============ 开关 Switch ============ */
.switch { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch-slider { position: absolute; inset: 0; cursor: pointer; background: #cbd5e1; border-radius: 26px; transition: background .2s; }
.switch-slider::before { content: ""; position: absolute; height: 20px; width: 20px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.switch input:checked + .switch-slider { background: #f97316; }
.switch input:checked + .switch-slider::before { transform: translateX(20px); }
.switch input:disabled + .switch-slider { opacity: .5; cursor: not-allowed; }

/* ============ 空状态 ============ */
.empty-state {
    padding: 32px 16px;
    text-align: center;
}
.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #f3f4f6, #fff);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: #d1d5db;
}
.empty-icon svg { width: 40px; height: 40px; }
.empty-text { color: #9ca3af; font-size: 13px; }

/* ============ 列表项 ============ */
.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: #fafbfc;
    border-radius: 10px;
    margin-bottom: 8px;
    border: 1px solid transparent;
    transition: all 0.15s;
    gap: 12px;
}
.list-item:hover {
    border-color: #fce7d2;
    background: #fff;
}
.list-item-info { flex: 1; min-width: 0; }
.list-item-title { font-weight: 600; font-size: 14px; color: #1f2937; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.list-item-meta { font-size: 12px; color: #6b7280; word-break: break-all; }
.list-item-actions { display: flex; gap: 6px; flex-shrink: 0; }

/* ============ 套餐 ============ */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}
.plan {
    border: 1.5px solid #f3f4f6;
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.15s;
    background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
}
.plan:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.15);
}
.plan-name { font-size: 14px; font-weight: 700; color: #1f2937; margin-bottom: 2px; }
.plan-days { color: #6b7280; font-size: 12px; margin-bottom: 6px; }
.plan-price { color: #ff6b35; font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.plan-desc { color: #9ca3af; font-size: 11px; margin-bottom: 10px; min-height: 1em; }
.plan-actions { display: flex; gap: 4px; justify-content: center; }

/* ============ Toast 通知 ============ */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}
.toast {
    min-width: 280px;
    max-width: 420px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: slideInRight 0.3s ease-out;
    border-left: 4px solid #ff6b35;
    pointer-events: all;
}
.toast-success { border-left-color: #10b981; }
.toast-error   { border-left-color: #ef4444; }
.toast-warning { border-left-color: #f59e0b; }
.toast-info    { border-left-color: #3b82f6; }
.toast-icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
.toast-icon-success { color: #10b981; }
.toast-icon-error { color: #ef4444; }
.toast-icon-warning { color: #f59e0b; }
.toast-icon-info { color: #3b82f6; }
.toast-content { flex: 1; min-width: 0; }
.toast-title { font-weight: 600; font-size: 13px; color: #1f2937; margin-bottom: 2px; }
.toast-message { font-size: 13px; color: #6b7280; word-break: break-word; }
.toast-close { background: transparent; border: none; cursor: pointer; color: #9ca3af; padding: 0; line-height: 1; }
.toast-close:hover { color: #6b7280; }
.toast-close svg { width: 16px; height: 16px; display: block; }
@keyframes slideInRight {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutRight {
    to { transform: translateX(120%); opacity: 0; }
}
.toast.removing { animation: slideOutRight 0.25s ease-in forwards; }

/* ============ Modal ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.15s;
    padding: 24px;
}
.modal {
    background: #fff;
    border-radius: 14px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: zoomIn 0.2s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.modal-icon {
    width: 56px; height: 56px;
    margin: 24px auto 0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.modal-icon svg { width: 28px; height: 28px; }
.modal-icon-confirm { background: #fff7ed; color: #f97316; }
.modal-icon-danger { background: #fef2f2; color: #ef4444; }
.modal-icon-success { background: #f0fdf4; color: #10b981; }
.modal-icon-info { background: #eff6ff; color: #3b82f6; }
.modal-header { padding: 20px 24px 12px; border-bottom: 1px solid #f3f4f6; }
.modal-header.no-border { border-bottom: none; padding-bottom: 4px; }
.modal-title { font-size: 16px; font-weight: 600; margin: 0; color: #1f2937; }
.modal-title.center { text-align: center; }
.modal-body { padding: 16px 24px; overflow-y: auto; }
.modal-body.center { text-align: center; color: #6b7280; }
.modal-footer { padding: 16px 24px; border-top: 1px solid #f3f4f6; display: flex; justify-content: flex-end; gap: 8px; }
.modal-footer.center { justify-content: center; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ============ 表格 ============ */
.table { width: 100%; border-collapse: collapse; }
.table th, .table td {
    padding: 10px 14px;
    text-align: left;
    font-size: 13px;
    border-bottom: 1px solid #f3f4f6;
}
.table th { font-weight: 600; color: #6b7280; background: #fafbfc; font-size: 12px; }
.table tr:hover td { background: #fafbfc; }

/* ============ 提示框 ============ */
.alert {
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.alert-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-danger { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ============ 标签页 ============ */
.tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #f3f4f6;
    margin-bottom: 16px;
    overflow-x: auto;
}
.tab {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: all 0.15s;
}
.tab:hover { color: #1f2937; }
.tab.active { color: #ff6b35; border-bottom-color: #ff6b35; font-weight: 600; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ============ 详情盒子（Cookie/Webhook 等） ============ */
.detail-box {
    padding: 12px 14px;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    font-size: 12px;
    color: #6b7280;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* ============ 工具类 ============ */
.flex { display: flex; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.text-sm { font-size: 13px; }
.text-xs { font-size: 12px; }
.text-muted { color: #9ca3af; }
.text-right { text-align: right; }
.text-center { text-align: center; }

/* ============ 加载动画 ============ */
.spinner {
    display: inline-block;
    width: 14px; height: 14px;
    border: 2px solid #f3f4f6;
    border-top-color: #ff6b35;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ 响应式 ============ */
@media (max-width: 1100px) {
    .stat-grid { grid-template-columns: repeat(3, 1fr); }
    .row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .sidebar { width: 60px; }
    .sidebar-brand .brand-info, .nav-link span, .sidebar-promo { display: none; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .content { padding: 16px; }
    .card { padding: 16px; }
}

/* ============ 详情/折叠 ============ */
details summary {
    cursor: pointer;
    color: #ff6b35;
    font-size: 13px;
    user-select: none;
    list-style: none;
    padding: 4px 0;
}
details summary::-webkit-details-marker { display: none; }
details summary::before {
    content: '▶ ';
    font-size: 10px;
    color: #ff6b35;
    margin-right: 4px;
    transition: transform 0.15s;
    display: inline-block;
}
details[open] summary::before { transform: rotate(90deg); }
details code { background: #f3f4f6; padding: 1px 6px; border-radius: 3px; font-size: 12px; }
details ol { padding-left: 24px; line-height: 1.8; margin-top: 8px; }

/* ============ 二维码区 ============ */
.qr-box { text-align: center; padding: 20px; background: #fafbfc; border-radius: 10px; }
.qr-box img { max-width: 200px; }

/* ============ 登录/注册中心化 ============ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe0cc 50%, #fff 100%);
    padding: 20px;
}
.auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
    padding: 36px 32px 28px;
    width: 100%;
    max-width: 400px;
}
.auth-logo {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}
.auth-logo svg { width: 36px; height: 36px; }
.auth-title { text-align: center; font-size: 22px; font-weight: 700; color: #1f2937; margin-bottom: 4px; }
.auth-subtitle { text-align: center; font-size: 13px; color: #6b7280; margin-bottom: 24px; }
.auth-footer { text-align: center; margin-top: 16px; font-size: 13px; color: #6b7280; }

/* ============ 多选下拉框 (Custom Multiselect) ============ */
.custom-multiselect {
    position: relative;
    width: 100%;
}
.multiselect-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    background: #fafbfc;
    color: #1f2937;
    cursor: pointer;
    user-select: none;
    min-height: 38px;
}
.multiselect-header:focus, .custom-multiselect.active .multiselect-header {
    border-color: #ff6b35;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.multiselect-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}
.multiselect-text.text-muted {
    color: #9ca3af;
}
.multiselect-arrow {
    font-size: 10px;
    color: #6b7280;
    transition: transform 0.15s;
}
.multiselect-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.multiselect-option {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #374151;
    cursor: pointer;
    user-select: none;
    padding: 4px;
    border-radius: 4px;
}
.multiselect-option:hover {
    background: #f9fafb;
}
.multiselect-option input {
    cursor: pointer;
    accent-color: #ff6b35;
    width: 14px;
    height: 14px;
    margin: 0;
}
