/* ============================================
   SYNTRIX DESIGN SYSTEM — FULL IMPLEMENTATION
   Applied to: Anket Raporlama Paneli
   ============================================ */

:root {
    --syn-bg: #0a0e1a;
    --syn-card: #111827;
    --syn-card-hover: #1a2235;
    --syn-border: rgba(255, 255, 255, 0.07);
    --syn-border-hover: rgba(6, 182, 212, 0.3);
    --syn-primary: #06b6d4;
    --syn-primary-foreground: #0a0e1a;
    --syn-secondary: #8b5cf6;
    --syn-muted: #1e1b3a;
    --syn-muted-foreground: #9ca3af;
    --syn-foreground: #f1f5f9;
    --syn-accent-cyan: #06b6d4;
    --syn-accent-cyan-light: #22d3ee;
    --syn-accent-violet: #8b5cf6;
    --syn-accent-violet-light: #a78bfa;
    --syn-accent-emerald: #10b981;
    --syn-accent-amber: #f59e0b;
    --syn-accent-red: #ef4444;
    --syn-accent-orange: #f97316;
    --syn-accent-rose: #f43f5e;
    --syn-accent-teal: #14b8a6;
    --syn-radius: 0.625rem;
}

/* === ANIMATIONS === */
@keyframes synFadeIn {
    from { opacity: 0; y: 8px; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes synScaleIn {
    from { opacity: 0; transform: scale(0.95) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes synPulseGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(6, 182, 212, 0.2); }
    50% { box-shadow: 0 0 20px rgba(6, 182, 212, 0.4); }
}
@keyframes synShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes synFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes synGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes synDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}



/* === BACKDROP === */
.ds-app-backdrop {
    background: var(--syn-bg) !important;
}
.ds-app-backdrop::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 30% at 10% 5%, rgba(6, 182, 212, 0.06), transparent),
        radial-gradient(ellipse 35% 25% at 90% 15%, rgba(139, 92, 246, 0.04), transparent),
        radial-gradient(ellipse 50% 40% at 50% 95%, rgba(6, 182, 212, 0.02), transparent);
    pointer-events: none;
    z-index: 0;
}

/* === SHELL === */
.ds-app-body { background: var(--syn-bg) !important; color: #e2e8f0 !important; }
.ds-content-panel {
    background: rgba(10, 14, 26, 0.6) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid var(--syn-border) !important;
    border-radius: 0 !important;
}

/* === SIDEBAR — SYNTRIX STYLE === */
.ds-shell-sidebar {
    width: 15rem !important;
    flex: 0 0 15rem !important;
}
.ds-sidebar-shell {
    background: rgba(10, 14, 26, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.ds-sidebar-shell > div { padding: 1rem 0.75rem !important; }

.ds-brand-mark {
    border: none !important;
    background: linear-gradient(135deg, var(--syn-accent-cyan), var(--syn-accent-violet)) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.25) !important;
    border-radius: 0.75rem !important;
}

.ds-nav-item {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.8125rem !important;
    border-radius: 0.5rem !important;
    margin-inline: 0 !important;
    gap: 0.625rem !important;
    border: 1px solid transparent !important;
    color: #94a3b8 !important;
    transition: all 0.2s ease !important;
}
.ds-nav-item:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    color: #e2e8f0 !important;
    border-color: transparent !important;
}
.ds-nav-item.is-active {
    background: linear-gradient(to right, rgba(6, 182, 212, 0.12), rgba(139, 92, 246, 0.12)) !important;
    color: #22d3ee !important;
    border: 1px solid rgba(6, 182, 212, 0.18) !important;
    box-shadow: none !important;
    font-weight: 600 !important;
}
.ds-nav-item .inline-flex { width: 1.125rem !important; height: 1.125rem !important; }
.ds-nav-item .inline-flex svg { width: 1.125rem !important; height: 1.125rem !important; }
.ds-nav-item.is-active .inline-flex svg { color: #22d3ee !important; }

nav.mt-5 { margin-top: 0.75rem !important; gap: 0.125rem; }

/* === GLASS CARD — SYNTRIX CARD STYLE === */
.syn-card {
    position: relative;
    overflow: hidden;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--syn-border);
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
}
.syn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(6, 182, 212, 0.3), rgba(139, 92, 246, 0.3), transparent);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.syn-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.03), rgba(139, 92, 246, 0.02));
    opacity: 0.03;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.syn-card:hover {
    border-color: var(--syn-border-hover);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.08), 0 0 60px rgba(139, 92, 246, 0.04);
    transform: translateY(-2px);
}
.syn-card:hover::before { opacity: 1; }
.syn-card:hover::after { opacity: 0.07; }

.syn-card-compact {
    padding: 0.75rem;
}

/* === KPI CARD — SYNTRIX STYLE === */
.syn-kpi {
    position: relative;
    overflow: hidden;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--syn-border);
    border-radius: 0.75rem;
    padding: 1.125rem;
    transition: all 0.3s ease;
}
.syn-kpi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--kpi-color, var(--syn-accent-cyan)), transparent);
    opacity: 0.6;
}
.syn-kpi::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--kpi-color, var(--syn-accent-cyan)), transparent);
    opacity: 0.03;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.syn-kpi:hover {
    border-color: var(--syn-border-hover);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.08);
    transform: translateY(-2px);
}
.syn-kpi:hover::after { opacity: 0.06; }

.syn-kpi-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
}
.syn-kpi-value {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f1f5f9;
    margin-top: 0.35rem;
}
.syn-kpi-value--cyan { color: #22d3ee; text-shadow: 0 0 16px rgba(6, 182, 212, 0.25); }
.syn-kpi-value--violet { color: #a78bfa; text-shadow: 0 0 16px rgba(139, 92, 246, 0.25); }
.syn-kpi-value--emerald { color: #34d399; text-shadow: 0 0 16px rgba(16, 185, 129, 0.25); }
.syn-kpi-value--amber { color: #fbbf24; text-shadow: 0 0 16px rgba(245, 158, 11, 0.25); }
.syn-kpi-note {
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    color: #64748b;
}
.syn-kpi-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.syn-kpi-icon--cyan { background: linear-gradient(to bottom right, #06b6d4, #0891b2); color: #fff; }
.syn-kpi-icon--violet { background: linear-gradient(to bottom right, #8b5cf6, #7c3aed); color: #fff; }
.syn-kpi-icon--emerald { background: linear-gradient(to bottom right, #10b981, #059669); color: #fff; }
.syn-kpi-icon--amber { background: linear-gradient(to bottom right, #f59e0b, #d97706); color: #fff; }
.syn-kpi-icon--rose { background: linear-gradient(to bottom right, #f43f5e, #e11d48); color: #fff; }

.syn-change {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.125rem 0.375rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 600;
}
.syn-change--up { background: rgba(16, 185, 129, 0.1); color: #34d399; }
.syn-change--down { background: rgba(239, 68, 68, 0.1); color: #f87171; }
.syn-change--neutral { background: rgba(148, 163, 184, 0.1); color: #94a3b8; }

/* === STATUS BADGE — SYNTRIX STYLE === */
.syn-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 500;
    border: 1px solid;
    white-space: nowrap;
}
.syn-badge-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 9999px;
    flex-shrink: 0;
}
.syn-badge--cyan { background: rgba(6, 182, 212, 0.12); color: #22d3ee; border-color: rgba(6, 182, 212, 0.25); }
.syn-badge--cyan .syn-badge-dot { background: #22d3ee; box-shadow: 0 0 6px rgba(6, 182, 212, 0.5); }
.syn-badge--violet { background: rgba(139, 92, 246, 0.12); color: #a78bfa; border-color: rgba(139, 92, 246, 0.25); }
.syn-badge--violet .syn-badge-dot { background: #a78bfa; box-shadow: 0 0 6px rgba(139, 92, 246, 0.5); }
.syn-badge--emerald { background: rgba(16, 185, 129, 0.12); color: #34d399; border-color: rgba(16, 185, 129, 0.25); }
.syn-badge--emerald .syn-badge-dot { background: #34d399; box-shadow: 0 0 6px rgba(16, 185, 129, 0.5); }
.syn-badge--amber { background: rgba(245, 158, 11, 0.12); color: #fbbf24; border-color: rgba(245, 158, 11, 0.25); }
.syn-badge--amber .syn-badge-dot { background: #fbbf24; box-shadow: 0 0 6px rgba(245, 158, 11, 0.5); }
.syn-badge--red { background: rgba(239, 68, 68, 0.12); color: #f87171; border-color: rgba(239, 68, 68, 0.25); }
.syn-badge--red .syn-badge-dot { background: #f87171; box-shadow: 0 0 6px rgba(239, 68, 68, 0.5); }
.syn-badge--blue { background: rgba(59, 130, 246, 0.12); color: #60a5fa; border-color: rgba(59, 130, 246, 0.25); }
.syn-badge--blue .syn-badge-dot { background: #60a5fa; box-shadow: 0 0 6px rgba(59, 130, 246, 0.5); }
.syn-badge--slate { background: rgba(148, 163, 184, 0.08); color: #94a3b8; border-color: rgba(148, 163, 184, 0.2); }
.syn-badge--slate .syn-badge-dot { background: #94a3b8; }
.syn-badge--pulse .syn-badge-dot { animation: synDotPulse 2s ease-in-out infinite; }

.syn-badge--mini {
    padding: 0.125rem 0.4rem;
    font-size: 0.5625rem;
    gap: 0.25rem;
}
.syn-badge--mini .syn-badge-dot { width: 0.3125rem; height: 0.3125rem; }

/* === BUTTONS — SYNTRIX STYLE === */
.ds-btn-primary {
    background: linear-gradient(to right, #06b6d4, #0891b2) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 2px 12px rgba(6, 182, 212, 0.25) !important;
    border-radius: 0.5rem !important;
    transition: all 0.2s ease !important;
}
.ds-btn-primary:hover {
    background: linear-gradient(to right, #22d3ee, #06b6d4) !important;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35) !important;
    transform: translateY(-1px) !important;
}

.ds-btn-ghost {
    border: 1px solid var(--syn-border) !important;
    background: rgba(17, 24, 39, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    color: #cbd5e1 !important;
    border-radius: 0.5rem !important;
    transition: all 0.2s ease !important;
}
.ds-btn-ghost:hover {
    border-color: rgba(6, 182, 212, 0.25) !important;
    background: rgba(6, 182, 212, 0.06) !important;
    color: #f1f5f9 !important;
}

.ds-btn-danger {
    border: 1px solid rgba(239, 68, 68, 0.25) !important;
    background: rgba(239, 68, 68, 0.08) !important;
    color: #f87171 !important;
    border-radius: 0.5rem !important;
}
.ds-btn-danger:hover {
    border-color: rgba(239, 68, 68, 0.4) !important;
    background: rgba(239, 68, 68, 0.15) !important;
    color: #fca5a5 !important;
}

/* === FORM CONTROLS === */
.ds-control,
.ds-control-select,
.ds-control-date {
    background: rgba(10, 14, 26, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0.5rem !important;
    color: #f1f5f9 !important;
    transition: all 0.2s ease !important;
}
.ds-control:focus,
.ds-control-select:focus,
.ds-control-date:focus {
    border-color: rgba(6, 182, 212, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1) !important;
}

/* === SECTION PANEL === */
.ds-section-panel {
    background: rgba(17, 24, 39, 0.5) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid var(--syn-border) !important;
    border-radius: 0.75rem !important;
}

/* === KPI CARD (design-system) === */
.ds-kpi-card {
    background: rgba(17, 24, 39, 0.5) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid var(--syn-border) !important;
    border-radius: 0.75rem !important;
    transition: all 0.3s ease !important;
}
.ds-kpi-card:hover {
    border-color: var(--syn-border-hover) !important;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.08) !important;
    transform: translateY(-2px) !important;
}

/* === STAT CARD === */
.cc-stat-card {
    position: relative !important;
    overflow: hidden !important;
    background: rgba(17, 24, 39, 0.5) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid var(--syn-border) !important;
    border-radius: 0.75rem !important;
    padding: 1rem !important;
    min-height: auto !important;
    transition: all 0.3s ease !important;
}
.cc-stat-card::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    inset-inline: 0 !important;
    border-radius: 0 !important;
}
.cc-stat-card:hover {
    border-color: var(--syn-border-hover) !important;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.08) !important;
    transform: translateY(-2px) !important;
}
.cc-stat-card--cyan::after { background: linear-gradient(to right, #06b6d4, transparent) !important; }
.cc-stat-card--purple::after { background: linear-gradient(to right, #8b5cf6, transparent) !important; }
.cc-stat-card--emerald::after { background: linear-gradient(to right, #10b981, transparent) !important; }
.cc-stat-card--amber::after { background: linear-gradient(to right, #f59e0b, transparent) !important; }

.cc-stat-label {
    font-size: 0.625rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #94a3b8 !important;
}
.cc-stat-value {
    margin-top: 0.35rem !important;
    font-size: 1.625rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
}
.cc-stat-card--cyan .cc-stat-value { color: #22d3ee !important; text-shadow: 0 0 16px rgba(6, 182, 212, 0.25) !important; }
.cc-stat-card--purple .cc-stat-value { color: #a78bfa !important; text-shadow: 0 0 16px rgba(139, 92, 246, 0.25) !important; }
.cc-stat-card--emerald .cc-stat-value { color: #34d399 !important; text-shadow: 0 0 16px rgba(16, 185, 129, 0.25) !important; }
.cc-stat-card--amber .cc-stat-value { color: #fbbf24 !important; text-shadow: 0 0 16px rgba(245, 158, 11, 0.25) !important; }
.cc-stat-note { margin-top: 0.2rem !important; font-size: 0.6875rem !important; color: #64748b !important; }

/* === ACTION CARD / LIST PANEL === */
.cc-action-card,
.cc-list-panel {
    position: relative !important;
    overflow: hidden !important;
    background: rgba(17, 24, 39, 0.5) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid var(--syn-border) !important;
    border-radius: 0.75rem !important;
    padding: 1rem !important;
}
.cc-action-card::after,
.cc-list-panel::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    inset-inline: 0 !important;
    height: 1px !important;
    background: linear-gradient(to right, rgba(6, 182, 212, 0.25), transparent) !important;
    border-radius: 0 !important;
}
.cc-action-card h2,
.cc-panel-head h2 { color: #f1f5f9 !important; font-size: 0.875rem !important; }

/* === LIST CARD === */
.cc-list-card {
    border-radius: 0.5rem !important;
    border-color: var(--syn-border) !important;
    background: rgba(10, 14, 26, 0.5) !important;
    padding: 0.5rem 0.75rem !important;
    transition: all 0.2s ease !important;
}
.cc-list-card:hover {
    border-color: rgba(6, 182, 212, 0.25) !important;
    background: rgba(6, 182, 212, 0.04) !important;
}
.cc-list-card.is-selected {
    border-color: rgba(6, 182, 212, 0.35) !important;
    background: rgba(6, 182, 212, 0.08) !important;
}
.cc-list-card strong { font-size: 0.8125rem !important; color: #e2e8f0 !important; }
.cc-list-card small { color: #64748b !important; }
.cc-list-card em { color: #22d3ee !important; }

/* === CARD INDEX === */
.cc-card-index {
    border-radius: 9999px !important;
    border: none !important;
    background: linear-gradient(to right, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1)) !important;
    color: #22d3ee !important;
    font-size: 0.5625rem !important;
    padding: 0.125rem 0.5rem !important;
}

/* === PANEL HEAD === */
.cc-panel-head span {
    border-radius: 0.5rem !important;
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.12), rgba(139, 92, 246, 0.08)) !important;
    color: #22d3ee !important;
    border: none !important;
}

/* === PERMISSION GRID === */
.cc-permission-grid label {
    border-radius: 0.375rem !important;
    border-color: var(--syn-border) !important;
    background: rgba(10, 14, 26, 0.5) !important;
    font-size: 0.6875rem !important;
    padding: 0.3rem 0.5rem !important;
}
.cc-permission-grid input { accent-color: #06b6d4 !important; }
.cc-toggle input { accent-color: #06b6d4 !important; }

/* === FLOW STEP === */
.cc-flow-step span {
    border-radius: 9999px !important;
    border-color: rgba(148, 163, 184, 0.2) !important;
    background: rgba(10, 14, 26, 0.7) !important;
    width: 1.75rem !important;
    height: 1.75rem !important;
    font-size: 0.6875rem !important;
}
.cc-flow-step.is-active span {
    border-color: rgba(6, 182, 212, 0.4) !important;
    background: rgba(6, 182, 212, 0.12) !important;
    color: #22d3ee !important;
    box-shadow: 0 0 16px rgba(6, 182, 212, 0.15) !important;
}
.cc-flow-step.is-complete span {
    border-color: rgba(16, 185, 129, 0.4) !important;
    background: rgba(16, 185, 129, 0.12) !important;
    color: #34d399 !important;
}
.cc-flow-panel {
    border-color: var(--syn-border) !important;
    background: rgba(17, 24, 39, 0.4) !important;
    border-radius: 0.75rem !important;
}
.cc-flow-line { background: linear-gradient(to right, rgba(6, 182, 212, 0.25), rgba(148, 163, 184, 0.08)) !important; }

/* === COMPACT CARD (deprecated — use syn-card) === */
.compact-card {
    position: relative !important;
    overflow: hidden !important;
    background: rgba(17, 24, 39, 0.5) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid var(--syn-border) !important;
    border-radius: 0.75rem !important;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease !important;
}
.compact-card:hover {
    border-color: var(--syn-border-hover) !important;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.06) !important;
}

/* === CASE DETAIL — SYNTRIX STYLE === */
.case-info-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)) !important;
    gap: 0.5rem !important;
}
.case-info-cell {
    padding: 0.5rem 0.625rem !important;
    background: rgba(10, 14, 26, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 0.5rem !important;
}
.case-info-cell .label {
    font-size: 0.5625rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: #64748b !important;
}
.case-info-cell .value {
    margin-top: 0.2rem !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    color: #e2e8f0 !important;
}

/* === SCORE COMPARISON === */
.score-compare {
    display: flex !important;
    align-items: center !important;
    gap: 0.625rem !important;
    padding: 0.5rem 0.75rem !important;
    background: rgba(10, 14, 26, 0.4) !important;
    border-radius: 0.5rem !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
}
.score-old { font-size: 0.9375rem !important; font-weight: 700 !important; color: #f87171 !important; }
.score-arrow { font-size: 0.75rem !important; color: #64748b !important; }
.score-new { font-size: 1.125rem !important; font-weight: 800 !important; color: #34d399 !important; text-shadow: 0 0 12px rgba(16, 185, 129, 0.25) !important; }
.score-diff { font-size: 0.6875rem !important; font-weight: 700 !important; color: #34d399 !important; background: rgba(16, 185, 129, 0.1) !important; padding: 0.125rem 0.375rem !important; border-radius: 0.25rem !important; }

/* === TIME STRIP === */
.time-strip {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.625rem !important;
}
.time-cell {
    padding: 0.625rem 0.75rem !important;
    background: rgba(10, 14, 26, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 0.5rem !important;
    text-align: center !important;
    min-height: 56px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}
.time-cell .label {
    font-size: 0.5625rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: #64748b !important;
    margin-bottom: 0.25rem !important;
}
.time-cell .value {
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    color: #22d3ee !important;
    text-shadow: 0 0 12px rgba(6, 182, 212, 0.2) !important;
}

/* === STEP TIMELINE === */
.step-timeline { position: relative !important; }
.step-timeline::before {
    content: '' !important;
    position: absolute !important;
    left: 16px !important;
    top: 28px !important;
    bottom: 12px !important;
    width: 1px !important;
    background: linear-gradient(to bottom, rgba(6, 182, 212, 0.35), rgba(139, 92, 246, 0.15), rgba(148, 163, 184, 0.08)) !important;
}
.step-item { position: relative !important; display: flex !important; gap: 0.875rem !important; padding: 0.625rem 0 !important; }
.step-dot {
    position: relative !important;
    z-index: 2 !important;
    flex-shrink: 0 !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.6875rem !important;
    font-weight: 700 !important;
    border: 2px solid rgba(148, 163, 184, 0.25) !important;
    background: #0a0e1a !important;
    color: #64748b !important;
    transition: all 0.3s ease !important;
}
.step-item.is-active .step-dot {
    border-color: #06b6d4 !important;
    background: rgba(6, 182, 212, 0.1) !important;
    color: #22d3ee !important;
    box-shadow: 0 0 16px rgba(6, 182, 212, 0.25) !important;
    animation: synPulseGlow 2.5s ease-in-out infinite !important;
}
.step-item.is-complete .step-dot {
    border-color: #10b981 !important;
    background: rgba(16, 185, 129, 0.1) !important;
    color: #34d399 !important;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.15) !important;
}
.step-body { flex: 1 !important; min-width: 0 !important; }
.step-title { font-size: 0.875rem !important; font-weight: 600 !important; color: #e2e8f0 !important; }
.step-item.is-active .step-title { color: #22d3ee !important; }
.step-item.is-complete .step-title { color: #34d399 !important; }
.step-desc { font-size: 0.75rem !important; color: #64748b !important; margin-top: 0.1rem !important; }
.step-content { margin-top: 0.5rem !important; }

/* === MINI TIMELINE === */
.mini-timeline { position: relative !important; padding-left: 1.25rem !important; }
.mini-timeline::before {
    content: '' !important;
    position: absolute !important;
    left: 5px !important;
    top: 6px !important;
    bottom: 6px !important;
    width: 1px !important;
    background: linear-gradient(to bottom, rgba(6, 182, 212, 0.25), rgba(139, 92, 246, 0.1), transparent) !important;
}
.mini-timeline-event { position: relative !important; padding: 0.35rem 0 !important; font-size: 0.75rem !important; }
.mini-timeline-event::before {
    content: '' !important;
    position: absolute !important;
    left: -1.25rem !important;
    top: 0.55rem !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: #0a0e1a !important;
    border: 2px solid rgba(148, 163, 184, 0.3) !important;
}
.mini-timeline-event.is-cyan::before { border-color: #22d3ee !important; box-shadow: 0 0 5px rgba(6, 182, 212, 0.3) !important; }
.mini-timeline-event.is-blue::before { border-color: #3b82f6 !important; box-shadow: 0 0 5px rgba(59, 130, 246, 0.3) !important; }
.mini-timeline-event.is-emerald::before { border-color: #34d399 !important; box-shadow: 0 0 5px rgba(16, 185, 129, 0.3) !important; }
.mini-timeline-event.is-amber::before { border-color: #fbbf24 !important; box-shadow: 0 0 5px rgba(245, 158, 11, 0.3) !important; }
.mini-timeline-event.is-purple::before { border-color: #a78bfa !important; box-shadow: 0 0 5px rgba(139, 92, 246, 0.3) !important; }
.mini-timeline-event.is-red::before { border-color: #f87171 !important; box-shadow: 0 0 5px rgba(239, 68, 68, 0.3) !important; }

/* === OLD BADGE-NEON → SYN BADGE COMPAT === */
.badge-neon {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
    padding: 0.2rem 0.5rem !important;
    font-size: 0.625rem !important;
    font-weight: 600 !important;
    border-radius: 9999px !important;
    border: 1px solid !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
}
.badge-cyan { border-color: rgba(6, 182, 212, 0.25) !important; background: rgba(6, 182, 212, 0.1) !important; color: #22d3ee !important; box-shadow: 0 0 6px rgba(6, 182, 212, 0.08) !important; }
.badge-purple { border-color: rgba(139, 92, 246, 0.25) !important; background: rgba(139, 92, 246, 0.1) !important; color: #a78bfa !important; box-shadow: 0 0 6px rgba(139, 92, 246, 0.08) !important; }
.badge-emerald { border-color: rgba(16, 185, 129, 0.25) !important; background: rgba(16, 185, 129, 0.1) !important; color: #34d399 !important; box-shadow: 0 0 6px rgba(16, 185, 129, 0.08) !important; }
.badge-amber { border-color: rgba(245, 158, 11, 0.25) !important; background: rgba(245, 158, 11, 0.1) !important; color: #fbbf24 !important; box-shadow: 0 0 6px rgba(245, 158, 11, 0.08) !important; }
.badge-red { border-color: rgba(239, 68, 68, 0.25) !important; background: rgba(239, 68, 68, 0.1) !important; color: #f87171 !important; box-shadow: 0 0 6px rgba(239, 68, 68, 0.08) !important; }
.badge-blue { border-color: rgba(59, 130, 246, 0.25) !important; background: rgba(59, 130, 246, 0.1) !important; color: #60a5fa !important; box-shadow: 0 0 6px rgba(59, 130, 246, 0.08) !important; }

/* === EMPTY STATE === */
.cc-empty-mini {
    border: 1px dashed rgba(148, 163, 184, 0.15) !important;
    background: rgba(10, 14, 26, 0.3) !important;
    border-radius: 0.5rem !important;
    color: #64748b !important;
}

/* === TABLE THEAD === */
.cc-list-panel table thead th,
.ds-section-panel table thead th {
    color: #64748b !important;
    border-bottom: 1px solid var(--syn-border) !important;
    font-size: 0.5625rem !important;
    letter-spacing: 0.12em !important;
}
.cc-list-panel table tbody tr:hover,
.ds-section-panel table tbody tr:hover {
    background: rgba(6, 182, 212, 0.03) !important;
}

/* === AGENT PERMISSION CARD === */
.cc-agent-permission-card {
    border: 1px solid var(--syn-border) !important;
    background: rgba(10, 14, 26, 0.4) !important;
    border-radius: 0.5rem !important;
    padding: 0.75rem !important;
}
.cc-agent-permission-card span {
    border-color: rgba(6, 182, 212, 0.15) !important;
    background: rgba(6, 182, 212, 0.06) !important;
    color: #22d3ee !important;
    border-radius: 0.25rem !important;
}

/* === SCROLLBAR === */
.ds-shell-scroll::-webkit-scrollbar { width: 6px !important; }
.ds-shell-scroll::-webkit-scrollbar-track { background: transparent !important; }
.ds-shell-scroll::-webkit-scrollbar-thumb { background: rgba(148, 163, 184, 0.15) !important; border-radius: 3px !important; }
.ds-shell-scroll::-webkit-scrollbar-thumb:hover { background: rgba(148, 163, 184, 0.3) !important; }

/* === ACCORDION === */
.ds-accordion {
    background: rgba(17, 24, 39, 0.5) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid var(--syn-border) !important;
    border-radius: 0.75rem !important;
}

/* === FILTER BAR === */
.ds-filter-bar {
    background: rgba(17, 24, 39, 0.5) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid var(--syn-border) !important;
    border-radius: 0.75rem !important;
}

/* === MOBILE HEADER === */
.ds-mobile-header {
    background: rgba(10, 14, 26, 0.9) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid var(--syn-border) !important;
}

/* === RESPONSIVE === */
@media (max-width: 1279px) {
    .cc-stat-grid, .cc-action-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 767px) {
    .cc-stat-grid, .cc-action-grid { grid-template-columns: 1fr !important; }
    .time-strip { grid-template-columns: repeat(2, 1fr) !important; }
    .case-info-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
    .cc-stat-grid, .cc-action-grid { grid-template-columns: 1fr !important; }
}

/* === GRADIENT TEXT UTILITY === */
.syn-gradient-text {
    background: linear-gradient(to right, #22d3ee, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === GLOW UTILITIES === */
.syn-glow-cyan { box-shadow: 0 0 20px rgba(6, 182, 212, 0.15), 0 0 40px rgba(6, 182, 212, 0.05); }
.syn-glow-violet { box-shadow: 0 0 20px rgba(139, 92, 246, 0.15), 0 0 40px rgba(139, 92, 246, 0.05); }

/* === CHECK INPUT === */
.ds-check-input { accent-color: #06b6d4 !important; }

/* === LINK ACCENT === */
.ds-link-accent { color: #22d3ee !important; }
.ds-link-accent:hover { color: #06b6d4 !important; }

/* === DASHBOARD REDESIGN === */
.syn-dash-hero {
    animation: synSlideUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
.syn-dash-kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.875rem;
    align-items: stretch;
}
.syn-kpi-cards {
    display: contents;
}
.syn-hero-gauge {
    grid-row: 1 / 3;
    grid-column: 3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    background: #111827;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 1rem;
    padding: 1.25rem 1.25rem 1rem;
    animation: synSlideUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
@media (max-width: 1024px) {
    .syn-dash-kpi-grid {
        grid-template-columns: 1fr 1fr;
    }
    .syn-hero-gauge { grid-row: auto; grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .syn-dash-kpi-grid {
        grid-template-columns: 1fr;
    }
    .syn-hero-gauge { grid-column: auto; }
}

/* Hero Card */
.syn-hero-card {
    position: relative;
    overflow: hidden;
    background: #111827;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 1rem;
    padding: 1.25rem 1.25rem 1rem;
    animation: synSlideUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.syn-hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    opacity: 0.85;
}
.syn-hero-card--cyan::before { background: linear-gradient(90deg, #06b6d4, #22d3ee); }
.syn-hero-card--emerald::before { background: linear-gradient(90deg, #059669, #34d399); }
.syn-hero-card--rose::before { background: linear-gradient(90deg, #e11d48, #f43f5e); }
.syn-hero-card--amber::before { background: linear-gradient(90deg, #d97706, #fbbf24); }
.syn-hero-card--teal::before { background: linear-gradient(90deg, #0d9488, #14b8a6); }
.syn-hero-gauge::before { background: linear-gradient(90deg, #6366f1, #818cf8); }

.syn-hero-card:hover {
    border-color: rgba(255,255,255,0.14);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.syn-hero-card__top {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.syn-hero-card__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    font-size: 1.25rem;
}
.syn-hero-card__icon svg { width: 1.375rem; height: 1.375rem; }
.syn-hero-card--cyan .syn-hero-card__icon { background: rgba(6,182,212,0.12); color: #22d3ee; }
.syn-hero-card--emerald .syn-hero-card__icon { background: rgba(16,185,129,0.12); color: #34d399; }
.syn-hero-card--rose .syn-hero-card__icon { background: rgba(244,63,94,0.12); color: #f43f5e; }
.syn-hero-card--amber .syn-hero-card__icon { background: rgba(245,158,11,0.12); color: #fbbf24; }
.syn-hero-card--teal .syn-hero-card__icon { background: rgba(20,184,166,0.12); color: #14b8a6; }
.syn-hero-card__icon--indigo { background: rgba(99,102,241,0.12) !important; color: #818cf8 !important; }

.syn-hero-card__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.syn-hero-card__value {
    font-size: 2rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.1;
    letter-spacing: -0.03em;
}
.syn-hero-card__deltas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

/* Delta badges */
.syn-delta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
    white-space: nowrap;
}
.syn-delta--up { background: rgba(16,185,129,0.12); color: #34d399; }
.syn-delta--down { background: rgba(239,68,68,0.12); color: #f87171; }
.syn-delta--neutral { background: rgba(148,163,184,0.08); color: #94a3b8; }
.syn-delta__arrow { font-size: 0.625rem; }
.syn-delta__tag {
    font-weight: 500;
    font-size: 0.5625rem;
    opacity: 0.7;
    margin-left: 0.125rem;
}

/* Quality Gauge */
.syn-gauge-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 0.5rem 0;
}
.syn-gauge-svg {
    width: 100%;
    max-width: 320px;
    height: auto;
}
.syn-gauge-track {
    opacity: 1;
}
.syn-gauge-fill {
    transition: stroke-dasharray 1.2s cubic-bezier(0.22,1,0.36,1);
}
.syn-gauge-value {
    font-size: 2rem;
    font-weight: 800;
    fill: #f1f5f9;
    font-family: system-ui, -apple-system, sans-serif;
    letter-spacing: -0.03em;
}
.syn-gauge-max {
    font-size: 0.875rem;
    fill: #64748b;
    font-family: system-ui, -apple-system, sans-serif;
    font-weight: 600;
}

/* Chart Panel */
.syn-dash-chart-panel {
    border: 1px solid rgba(255,255,255,0.07);
    background: #111827;
    border-radius: 1rem;
    padding: 1.25rem;
    animation: synSlideUp 0.6s cubic-bezier(0.22,1,0.36,1) both;
    animation-delay: 200ms;
}
.syn-dash-chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.syn-dash-chart-title {
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0.25rem 0 0 0;
}
.syn-dash-chart-stage {
    position: relative;
    height: 476px;
    width: 100%;
}
@media (min-width: 1280px) {
    .syn-dash-chart-stage { height: 560px; }
}
.syn-dash-chart-stage canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Chart Legend Buttons */
.syn-chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}
.syn-legend-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #cbd5e1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.syn-legend-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}
.syn-legend-btn--active {
    background: rgba(255,255,255,0.06);
}
.syn-legend-btn--inactive {
    opacity: 0.45;
}
.syn-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Table section animation */
.syn-dash-table-section {
    animation: synSlideUp 0.6s cubic-bezier(0.22,1,0.36,1) both;
    animation-delay: 350ms;
}

/* Extracted from inline styles */
.syn-flash--success { border-color: rgba(16,185,129,0.25); background: rgba(16,185,129,0.08); color: #34d399; }
.syn-flash--danger { border-color: rgba(239,68,68,0.25); background: rgba(239,68,68,0.08); color: #f87171; }
.syn-flash--warning { border-color: rgba(245,158,11,0.25); background: rgba(245,158,11,0.08); color: #fbbf24; }
.syn-thead-dark { background: rgba(10,14,26,0.5); }
.syn-badge--tiny { font-size: 0.5rem; }
.syn-control-xs { max-width: 90px; }
.syn-control-sm { max-width: 140px; }
.syn-control-md { max-width: 180px; }
.syn-control-lg { max-width: 220px; }
.syn-panel-flush { padding: 0; overflow: hidden; }
.syn-panel-ghost { border: none; background: none; padding: 0; box-shadow: none; }

@keyframes synSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === TOAST NOTIFICATION SYSTEM === */
.syn-toast-layer {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    pointer-events: none;
    max-width: min(420px, 90vw);
}
.syn-toast {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.75rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04);
    animation: synToastIn 0.45s cubic-bezier(0.22,1,0.36,1) both;
    position: relative;
    overflow: hidden;
}
.syn-toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0.8;
}
.syn-toast--success { background: rgba(17,24,39,0.92); border-color: rgba(16,185,129,0.2); }
.syn-toast--success::before { background: linear-gradient(90deg, #10b981, #34d399); }
.syn-toast--danger { background: rgba(17,24,39,0.92); border-color: rgba(239,68,68,0.2); }
.syn-toast--danger::before { background: linear-gradient(90deg, #ef4444, #f87171); }
.syn-toast--warning { background: rgba(17,24,39,0.92); border-color: rgba(245,158,11,0.2); }
.syn-toast--warning::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.syn-toast--info { background: rgba(17,24,39,0.92); border-color: rgba(6,182,212,0.2); }
.syn-toast--info::before { background: linear-gradient(90deg, #06b6d4, #22d3ee); }
.syn-toast__icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    margin-top: 0.0625rem;
}
.syn-toast--success .syn-toast__icon { background: rgba(16,185,129,0.14); color: #34d399; }
.syn-toast--danger .syn-toast__icon { background: rgba(239,68,68,0.14); color: #f87171; }
.syn-toast--warning .syn-toast__icon { background: rgba(245,158,11,0.14); color: #fbbf24; }
.syn-toast--info .syn-toast__icon { background: rgba(6,182,212,0.14); color: #22d3ee; }
.syn-toast__icon svg { width: 0.875rem; height: 0.875rem; }
.syn-toast__body { flex: 1; min-width: 0; }
.syn-toast__title { font-size: 0.8125rem; font-weight: 600; color: #f1f5f9; line-height: 1.35; }
.syn-toast__text { font-size: 0.75rem; color: #94a3b8; margin-top: 0.125rem; line-height: 1.4; }
.syn-toast__close {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    color: #64748b;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    margin: -0.25rem -0.25rem -0.25rem 0;
}
.syn-toast__close:hover { background: rgba(255,255,255,0.06); color: #cbd5e1; }
.syn-toast__close svg { width: 0.875rem; height: 0.875rem; }
.syn-toast--exit { animation: synToastOut 0.3s cubic-bezier(0.4,0,1,1) both; }
@keyframes synToastIn {
    from { opacity: 0; transform: translateX(24px) scale(0.96); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes synToastOut {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to { opacity: 0; transform: translateX(24px) scale(0.96); }
}

/* === CONFIRM DIALOG === */
.syn-confirm-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,14,26,0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: synConfirmOverlayIn 0.25s ease both;
    padding: 1rem;
}
.syn-confirm-overlay--exit { animation: synConfirmOverlayOut 0.2s ease both; }
@keyframes synConfirmOverlayIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes synConfirmOverlayOut { from { opacity: 1; } to { opacity: 0; } }
.syn-confirm-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    background: rgba(17,24,39,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
    padding: 1.5rem;
    animation: synConfirmCardIn 0.35s cubic-bezier(0.22,1,0.36,1) both;
}
.syn-confirm-overlay--exit .syn-confirm-card { animation: synConfirmCardOut 0.2s ease both; }
@keyframes synConfirmCardIn { from { opacity: 0; transform: scale(0.92) translateY(12px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes synConfirmCardOut { from { opacity: 1; transform: scale(1) translateY(0); } to { opacity: 0; transform: scale(0.92) translateY(12px); } }
.syn-confirm-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.syn-confirm-icon--danger { background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.syn-confirm-icon--warning { background: rgba(245,158,11,0.12); color: #fbbf24; border: 1px solid rgba(245,158,11,0.2); }
.syn-confirm-icon--info { background: rgba(6,182,212,0.12); color: #22d3ee; border: 1px solid rgba(6,182,212,0.2); }
.syn-confirm-icon svg { width: 1.25rem; height: 1.25rem; }
.syn-confirm-title { font-size: 1rem; font-weight: 600; color: #f1f5f9; text-align: center; }
.syn-confirm-text { font-size: 0.8125rem; color: #94a3b8; text-align: center; margin-top: 0.375rem; line-height: 1.5; }
.syn-confirm-actions { display: flex; gap: 0.625rem; margin-top: 1.25rem; }
.syn-confirm-actions button { flex: 1; }
