/* shadcn/ui dark theme token system */
:root {
    --background: #020817;
    --foreground: #f8fafc;

    --card: #0f172a;
    --card-foreground: #f8fafc;

    --border: #1e293b;
    --input: #1e293b;

    --primary: #f8fafc;
    --primary-foreground: #0f172a;

    --secondary: #1e293b;
    --secondary-foreground: #f8fafc;

    --muted: #1e293b;
    --muted-foreground: #94a3b8;

    --accent: #1e293b;
    --accent-foreground: #f8fafc;

    --destructive: #7f1d1d;
    --destructive-foreground: #fecaca;

    --ring: #334155;

    /* App accent (indigo, toned down) */
    --indigo: #6366f1;
    --indigo-dim: rgba(99, 102, 241, 0.12);
    --indigo-border: rgba(99, 102, 241, 0.25);

    --success: #166534;
    --success-fg: #bbf7d0;
    --success-border: rgba(22, 101, 52, 0.4);

    --radius: 0.5rem;
    --radius-sm: 0.375rem;
    --radius-lg: 0.75rem;

    --transition: all 0.15s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
    font-size: 14px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #334155; }

/* ────────────────────────────────────────
   Layout
───────────────────────────────────────── */
.app-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ────────────────────────────────────────
   Header
───────────────────────────────────────── */
.app-header {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--indigo);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    width: 18px;
    height: 18px;
    color: white;
}

.logo-area h1 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--foreground);
}

.logo-area .subtitle {
    font-size: 0.78rem;
    color: var(--muted-foreground);
    margin-top: 1px;
}

/* Stat Cards */
.header-stats {
    display: flex;
    gap: 8px;
}

.stat-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    min-width: 120px;
    text-align: center;
}

.stat-card.font-highlight {
    border-color: var(--indigo-border);
    background: var(--indigo-dim);
}

.stat-card.font-highlight .stat-value {
    color: #818cf8;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted-foreground);
    margin-top: 2px;
    font-weight: 500;
}

/* ────────────────────────────────────────
   Panels
───────────────────────────────────────── */
.app-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.panel-section {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.panel-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h2 {
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--foreground);
}

.panel-header h2 i {
    color: var(--muted-foreground);
    width: 16px;
    height: 16px;
}

.panel-header .helper-text {
    font-size: 0.78rem;
    color: var(--muted-foreground);
}

.panel-body {
    padding: 20px;
}

/* ────────────────────────────────────────
   Buttons — shadcn variants
───────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.825rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    font-family: inherit;
}

.btn:disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Default — filled white */
.btn-primary {
    background: var(--foreground);
    color: var(--primary-foreground);
    border-color: var(--foreground);
}
.btn-primary:hover { background: #e2e8f0; border-color: #e2e8f0; }

/* Secondary — muted fill */
.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
    border-color: var(--border);
}
.btn-secondary:hover { background: #273347; }

/* Outline — transparent with border */
.btn-outline {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-outline:hover { background: var(--accent); }

/* Ghost — no bg, no border */
.btn-ghost {
    background: transparent;
    color: var(--muted-foreground);
    border-color: transparent;
}
.btn-ghost:hover { background: var(--accent); color: var(--foreground); }

/* Destructive */
.btn-danger {
    background: #991b1b;
    color: #fecaca;
    border-color: #7f1d1d;
}
.btn-danger:hover { background: #7f1d1d; }

/* Success (subtle) */
.btn-success {
    background: var(--secondary);
    color: #86efac;
    border-color: var(--border);
}
.btn-success:hover { background: #273347; color: #4ade80; }

/* Accent (indigo) — for primary CTAs only */
.btn-accent {
    background: var(--indigo);
    color: white;
    border-color: var(--indigo);
}
.btn-accent:hover { background: #4f46e5; border-color: #4f46e5; }

/* Sizes */
.btn-sm {
    padding: 6px 12px;
    font-size: 0.775rem;
}

.btn-lg {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Icon-only button */
.btn-icon {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--muted-foreground);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.btn-icon:hover { background: var(--accent); color: var(--foreground); }

.btn i, .btn-icon i {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ────────────────────────────────────────
   JSON Textarea
───────────────────────────────────────── */
#json-input {
    width: 100%;
    height: 130px;
    background: var(--background);
    border: 1px solid var(--input);
    border-radius: var(--radius);
    padding: 12px 14px;
    color: #93c5fd;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    font-size: 0.8rem;
    resize: vertical;
    transition: var(--transition);
    outline: none;
    line-height: 1.6;
}

#json-input::placeholder { color: var(--muted-foreground); font-family: inherit; }

#json-input:focus {
    border-color: var(--ring);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

.actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

/* ────────────────────────────────────────
   Dashboard toolbar
───────────────────────────────────────── */
.dashboard-toolbar {
    flex-wrap: wrap;
    gap: 12px;
}

.toolbar-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

/* Divider between toolbar action groups */
.toolbar-actions .btn-danger {
    margin-left: 4px;
}

/* ────────────────────────────────────────
   Filters bar
───────────────────────────────────────── */
.filters-bar {
    padding: 12px 20px;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 260px;
}

.search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground);
    width: 15px;
    height: 15px;
    pointer-events: none;
}

.search-box input {
    width: 100%;
    padding: 8px 14px 8px 36px;
    background: var(--card);
    border: 1px solid var(--input);
    border-radius: var(--radius-sm);
    color: var(--foreground);
    font-size: 0.825rem;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.search-box input::placeholder { color: var(--muted-foreground); }

.search-box input:focus {
    border-color: var(--ring);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

.filter-dropdowns {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-dropdowns select {
    padding: 7px 28px 7px 12px;
    background: var(--card);
    border: 1px solid var(--input);
    border-radius: var(--radius-sm);
    color: var(--foreground);
    font-size: 0.8rem;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.filter-dropdowns select:focus { border-color: var(--ring); }
.filter-dropdowns select option { background: #0f172a; color: var(--foreground); }

/* Active filter badges */
.active-filters-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.active-filters-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.badge-list {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-badge {
    background: var(--indigo-dim);
    border: 1px solid var(--indigo-border);
    color: #a5b4fc;
    padding: 2px 8px;
    border-radius: 99px;
    font-size: 0.72rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.filter-badge span {
    cursor: pointer;
    opacity: 0.7;
    font-weight: 600;
}
.filter-badge span:hover { opacity: 1; color: #fca5a5; }

/* ────────────────────────────────────────
   Checkbox
───────────────────────────────────────── */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    user-select: none;
    height: 16px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 3px;
    transition: var(--transition);
}

.checkbox-container:hover input ~ .checkmark { border-color: var(--ring); }

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--indigo);
    border-color: var(--indigo);
}

.checkmark:after { content: ""; position: absolute; display: none; }
.checkbox-container input:checked ~ .checkmark:after { display: block; }
.checkbox-container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

/* ────────────────────────────────────────
   Table
───────────────────────────────────────── */
.table-container {
    width: 100%;
    overflow-x: auto;
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.leads-table th,
.leads-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.leads-table th {
    background: var(--background);
    color: var(--muted-foreground);
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.leads-table tbody tr { transition: background 0.1s ease; }
.leads-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.leads-table tbody tr.row-selected { background: var(--indigo-dim); }
.leads-table tbody tr.row-selected:hover { background: rgba(99,102,241,0.08); }
.leads-table tbody tr:last-child td { border-bottom: none; }

/* Lead info cell */
.lead-info-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lead-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.lead-placeholder-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--indigo-dim);
    border: 1px solid var(--indigo-border);
    color: #a5b4fc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.lead-name-container { display: flex; flex-direction: column; gap: 2px; }
.lead-name { font-weight: 500; color: var(--foreground); font-size: 0.875rem; }
.lead-experience-badge { font-size: 0.68rem; color: var(--muted-foreground); }

/* Text helpers */
.text-secondary { color: var(--muted-foreground); }
.text-muted { color: #475569; }

/* Email pills */
.email-container { display: flex; flex-direction: column; gap: 3px; }

.email-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--background);
    border: 1px solid var(--border);
    padding: 2px 7px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-family: 'SF Mono', 'Fira Code', monospace;
    width: max-content;
}

.email-pill.verified {
    border-color: rgba(22,163,74,0.3);
    background: rgba(22,163,74,0.06);
    color: #86efac;
}

.btn-copy-email {
    background: none;
    border: none;
    cursor: pointer;
    color: #475569;
    display: flex;
    align-items: center;
    transition: var(--transition);
    padding: 0;
    line-height: 1;
}
.btn-copy-email:hover { color: var(--foreground); }
.btn-copy-email i { width: 11px; height: 11px; }

/* Social links */
.social-links { display: flex; gap: 6px; }

.social-btn {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: var(--background);
    border: 1px solid var(--border);
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}
.social-btn:hover { background: #0077b5; color: white; border-color: #0077b5; }
.social-btn i { width: 13px; height: 13px; }

/* Row actions */
.row-actions { display: flex; gap: 6px; }

.row-actions button {
    background: transparent;
    border: 1px solid transparent;
    color: var(--muted-foreground);
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-view:hover {
    background: var(--indigo-dim);
    color: #a5b4fc;
    border-color: var(--indigo-border);
}

.btn-del:hover {
    background: rgba(127,29,29,0.2);
    color: #fca5a5;
    border-color: rgba(127,29,29,0.4);
}

.row-actions button i { width: 13px; height: 13px; }

/* Empty state */
.empty-state {
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--muted-foreground);
}
.empty-state i { width: 40px; height: 40px; opacity: 0.4; }
.empty-state h3 { font-size: 1rem; font-weight: 600; color: var(--muted-foreground); }
.empty-state p { font-size: 0.825rem; }

/* ────────────────────────────────────────
   Footer
───────────────────────────────────────── */
.dashboard-footer {
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
}
.footer-info { font-size: 0.8rem; color: var(--muted-foreground); }
.footer-info span { color: var(--foreground); font-weight: 500; }

/* ────────────────────────────────────────
   Floating Batch Bar
───────────────────────────────────────── */
.floating-batch-bar {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(99,102,241,0.15);
    z-index: 100;
    transition: bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.floating-batch-bar.active { bottom: 20px; }

.batch-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.825rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.selected-badge {
    background: var(--indigo);
    color: white;
    padding: 2px 8px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.775rem;
}

.batch-buttons { display: flex; gap: 8px; }

/* ────────────────────────────────────────
   Modals
───────────────────────────────────────── */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 8, 23, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 200;
    padding: 20px;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 860px;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(8px) scale(0.99);
    transition: transform 0.15s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.modal-medium { max-width: 560px; }

.modal-backdrop.active .modal-container { transform: translateY(0) scale(1); }

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--muted-foreground);
    z-index: 1;
}
.modal-close:hover { background: var(--accent); color: var(--foreground); }
.modal-close i { width: 14px; height: 14px; }

/* Detail modal layout */
.detail-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 0;
}

@media (max-width: 640px) {
    .detail-grid { grid-template-columns: 1fr; }
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid var(--border);
    padding: 28px 24px;
    gap: 4px;
}

@media (max-width: 640px) {
    .detail-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 24px;
    }
}

.detail-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    margin-bottom: 12px;
}

.detail-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.detail-title { font-size: 0.825rem; color: var(--muted-foreground); margin-bottom: 16px; }

.detail-meta-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin-top: 8px;
}

.meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-label { font-size: 0.68rem; text-transform: uppercase; color: var(--muted-foreground); font-weight: 600; letter-spacing: 0.4px; }
.meta-value { font-size: 0.825rem; color: var(--foreground); }

.detail-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
    overflow-y: auto;
}

.detail-section-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--foreground);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.detail-section-title i { color: var(--muted-foreground); width: 15px; height: 15px; }

/* Timeline */
.timeline {
    position: relative;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--border);
}

.timeline-item { position: relative; }

.timeline-dot {
    position: absolute;
    left: -20px;
    top: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--indigo);
    border: 1.5px solid var(--background);
}

.timeline-item.past .timeline-dot { background: var(--border); }

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.timeline-role { font-size: 0.825rem; font-weight: 600; }
.timeline-dates { font-size: 0.75rem; color: var(--muted-foreground); white-space: nowrap; }
.timeline-company { font-size: 0.775rem; color: var(--muted-foreground); margin-top: 2px; }

/* ────────────────────────────────────────
   Modal form
───────────────────────────────────────── */
.modal-header {
    padding: 20px 24px 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}
.modal-header h2 { font-size: 1rem; font-weight: 600; }

.lead-form { padding: 20px 24px; }

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

@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.form-group input {
    padding: 8px 12px;
    background: var(--background);
    border: 1px solid var(--input);
    border-radius: var(--radius-sm);
    color: var(--foreground);
    font-size: 0.825rem;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input::placeholder { color: #475569; }
.form-group input:focus { border-color: var(--ring); box-shadow: 0 0 0 2px rgba(99,102,241,0.15); }

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ────────────────────────────────────────
   Toast
───────────────────────────────────────── */
.toast-container {
    position: fixed;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 300;
}

.toast {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 12px 16px;
    border-radius: var(--radius);
    color: var(--foreground);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(110%);
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.825rem;
    max-width: 320px;
}

.toast.show { transform: translateX(0); opacity: 1; }
.toast-success { border-left: 3px solid #22c55e; }
.toast-success i { color: #22c55e; }
.toast-danger { border-left: 3px solid #ef4444; }
.toast-danger i { color: #ef4444; }
.toast-warning { border-left: 3px solid #f59e0b; }
.toast-warning i { color: #f59e0b; }
.toast i { width: 16px; height: 16px; flex-shrink: 0; }
