:root {
    --bg: #0b100e;
    --bg-elevated: #121a16;
    --surface: #161f1b;
    --surface-2: #1c2721;
    --border: #2a3830;
    --border-soft: #223028;
    --text: #e7efe9;
    --text-dim: #9aaba0;
    --muted: #6f8076;
    --accent: #3dba7a;
    --accent-soft: rgba(61, 186, 122, 0.14);
    --accent-hover: #4fd48c;
    --danger: #e85d5d;
    --danger-soft: rgba(232, 93, 93, 0.14);
    --warn: #e6b84d;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    --sidebar-w: 240px;
    --font: 'DM Sans', system-ui, sans-serif;
    --display: 'Instrument Serif', Georgia, serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background:
        radial-gradient(ellipse 70% 45% at 0% 0%, rgba(61, 186, 122, 0.09), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(61, 186, 122, 0.05), transparent 50%),
        var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
}

/* Shell */
.app-shell {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: var(--sidebar-w);
    background: linear-gradient(180deg, #101814 0%, #0d1310 100%);
    border-right: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    z-index: 40;
    transition: transform 0.35s var(--ease);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.35rem 0.65rem 1.5rem;
    color: var(--text);
    text-decoration: none;
}

.brand:hover {
    color: var(--text);
}

.brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, var(--accent) 0%, #1f7a4d 100%);
    box-shadow: 0 0 0 3px var(--accent-soft);
    flex-shrink: 0;
}

.brand-text {
    font-family: var(--display);
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.brand-text span {
    display: block;
    font-family: var(--font);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.1rem;
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius-sm);
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
    background: var(--surface);
    color: var(--text);
}

.nav-link.active {
    background: var(--accent-soft);
    color: var(--accent);
}

.sidebar-foot {
    padding: 1rem 0.85rem 0.25rem;
    border-top: 1px solid var(--border-soft);
    margin-top: auto;
}

.version {
    font-size: 0.75rem;
    color: var(--muted);
}

.main-wrap {
    flex: 1;
    margin-left: var(--sidebar-w);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.topbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem 0.5rem;
}

.page-heading {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 35;
}

.content {
    flex: 1;
    padding: 1rem 2rem 2.5rem;
}

.site-footer {
    padding: 1rem 2rem 1.5rem;
    color: var(--muted);
    font-size: 0.85rem;
}

/* Typography blocks */
.eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.section-title,
.hero-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.section-sub,
.hero-sub {
    color: var(--text-dim);
    max-width: 36rem;
    margin-bottom: 1.25rem;
}

.muted {
    color: var(--muted);
    font-size: 0.875rem;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* Hero dashboard */
.hero-dash {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 4px);
    background:
        linear-gradient(120deg, rgba(61, 186, 122, 0.12), transparent 45%),
        var(--surface);
    padding: 2rem 2.25rem;
    margin-bottom: 1.5rem;
    animation: rise 0.6s var(--ease) both;
}

.hero-dash-copy {
    position: relative;
    z-index: 1;
    max-width: 32rem;
}

.hero-dash-glow {
    position: absolute;
    right: -10%;
    top: -40%;
    width: 55%;
    height: 180%;
    background: radial-gradient(circle, rgba(61, 186, 122, 0.22), transparent 65%);
    pointer-events: none;
    animation: drift 8s ease-in-out infinite alternate;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drift {
    from { transform: translateX(0) scale(1); }
    to { transform: translateX(-8%) scale(1.05); }
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-of {
    font-family: var(--font);
    font-size: 1rem;
    color: var(--muted);
    font-weight: 500;
}

.quota-panel {
    max-width: 720px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.15rem;
    margin-bottom: 1.25rem;
}

.quota-panel.quota-full {
    border-color: rgba(232, 93, 93, 0.45);
    background: rgba(232, 93, 93, 0.06);
}

.quota-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.55rem;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.quota-head strong {
    color: var(--text);
    font-size: 0.95rem;
}

.quota-bar {
    height: 8px;
    background: var(--bg-elevated);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
}

.quota-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-dim), var(--accent));
    border-radius: 999px;
    transition: width 0.35s var(--ease);
}

.quota-full .quota-bar span {
    background: linear-gradient(90deg, #b84a4a, var(--danger));
}

.quota-note {
    margin-top: 0.55rem;
    font-size: 0.85rem;
}

.stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.15rem 1.25rem;
    animation: rise 0.55s var(--ease) both;
}

.stat:nth-child(2) { animation-delay: 0.05s; }
.stat:nth-child(3) { animation-delay: 0.1s; }
.stat:nth-child(4) { animation-delay: 0.15s; }

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.stat-value {
    font-family: var(--display);
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Panels & lists */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
}

.panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.panel-head h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

.link-quiet {
    color: var(--muted);
    font-size: 0.85rem;
    white-space: nowrap;
}

.link-quiet:hover {
    color: var(--accent);
}

.empty {
    color: var(--text-dim);
    padding: 1.5rem 0.25rem;
}

.lead-list,
.extract-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.lead-list li,
.extract-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-soft);
}

.lead-list li:last-child,
.extract-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lead-main,
.extract-main {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.lead-meta,
.extract-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-completed {
    background: var(--accent-soft);
    color: var(--accent);
}

.badge-failed {
    background: var(--danger-soft);
    color: var(--danger);
}

.badge-pending {
    background: rgba(230, 184, 77, 0.15);
    color: var(--warn);
}

/* Forms & buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
    text-decoration: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--accent);
    color: #041208;
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: #041208;
}

.btn-secondary {
    background: var(--surface-2);
    border-color: var(--border);
    color: var(--text);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--text-dim);
    padding: 0.5rem 0.9rem;
}

.btn-ghost:hover {
    color: var(--text);
    border-color: var(--text-dim);
}

.btn-icon {
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 0.35rem;
    border-radius: 6px;
    display: inline-flex;
}

.btn-icon:hover {
    color: var(--danger);
    background: var(--danger-soft);
}

.btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(4, 18, 8, 0.25);
    border-top-color: #041208;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.input::placeholder {
    color: var(--muted);
}

.select {
    appearance: none;
    background-color: var(--bg-elevated);
    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='%236f8076' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.25rem;
    color: var(--text);
}

/* Native option menus need explicit colors or text can be invisible on Windows */
.select option {
    background-color: #161f1b;
    color: #e7efe9;
}

.field-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 0.4rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 720px;
}

.form-grid .span-2 {
    grid-column: 1 / -1;
}

.location-field {
    position: relative;
}

.coords-line {
    margin-top: 0.45rem;
}

.location-dropdown {
    list-style: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 1.4rem);
    z-index: 20;
    max-height: 260px;
    overflow-y: auto;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.location-dropdown li {
    padding: 0.7rem 0.9rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    border-bottom: 1px solid var(--border-soft);
}

.location-dropdown li:last-child {
    border-bottom: none;
}

.location-dropdown li:hover {
    background: var(--accent-soft);
}

.location-dropdown li span {
    font-size: 0.8rem;
    color: var(--muted);
}

.location-empty {
    cursor: default !important;
    color: var(--muted);
    font-size: 0.9rem;
}

.location-empty:hover {
    background: transparent !important;
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.check-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 1rem;
}

.check {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--text-dim);
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.setup-steps {
    list-style: none;
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    margin-bottom: 1rem;
}

.setup-steps li {
    position: relative;
    padding-left: 2.5rem;
    counter-increment: step;
}

.setup-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    display: grid;
    place-items: center;
}

.setup-steps p {
    color: var(--text-dim);
    font-size: 0.92rem;
    margin-top: 0.25rem;
}

.setup-steps ul {
    margin: 0.4rem 0 0 1.1rem;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.setup-steps code,
.tips code {
    font-size: 0.82rem;
    color: var(--accent);
}

.check input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--accent);
}

/* Extract */
.extract-hero,
.export-hero {
    margin-bottom: 1.5rem;
    animation: rise 0.5s var(--ease) both;
}

.extract-form {
    max-width: 720px;
}

.url-row {
    display: flex;
    gap: 0.65rem;
}

.url-row .input {
    flex: 1;
}

.result-panel {
    margin-bottom: 1.5rem;
}

.result-stats {
    display: flex;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    flex-shrink: 0;
}

.animate-in {
    animation: rise 0.5s var(--ease) both;
}

.tips ul {
    margin: 0.75rem 0 0 1.1rem;
    color: var(--text-dim);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

/* Table */
.toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex: 1;
}

.search-form .input[type="search"] {
    min-width: 220px;
    flex: 1;
    max-width: 360px;
}

.search-form .select {
    width: auto;
    min-width: 140px;
}

.table-wrap {
    overflow-x: auto;
    margin: 0 -0.25rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.data-table th {
    text-align: left;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.data-table td {
    padding: 0.85rem 0.75rem;
    border-bottom: 1px solid var(--border-soft);
    vertical-align: middle;
}

.data-table tbody tr {
    transition: background 0.15s;
}

.data-table tbody tr:hover {
    background: rgba(61, 186, 122, 0.04);
}

.data-table a {
    color: var(--accent);
}

.nowrap {
    white-space: nowrap;
}

.source-cell {
    max-width: 140px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 1.25rem;
}

/* Export */
.export-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 760px;
}

.export-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    animation: rise 0.5s var(--ease) both;
}

.export-card:nth-child(2) {
    animation-delay: 0.08s;
}

.export-card h3 {
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 400;
}

.export-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.export-card .btn {
    margin-top: 0.5rem;
}

/* Alerts */
.alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    font-size: 0.925rem;
    animation: rise 0.4s var(--ease) both;
}

.alert-success {
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(61, 186, 122, 0.3);
}

.alert-error {
    background: var(--danger-soft);
    color: var(--danger);
    border: 1px solid rgba(232, 93, 93, 0.3);
}

.alert-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
}

.alert-close:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 960px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split,
    .export-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    body.sidebar-open .sidebar {
        transform: translateX(0);
    }

    body.sidebar-open .sidebar-overlay {
        display: block;
    }

    .main-wrap {
        margin-left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .content,
    .topbar,
    .site-footer {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    .url-row {
        flex-direction: column;
    }

    .hero-dash {
        padding: 1.5rem;
    }

    .lead-list li,
    .extract-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .lead-meta,
    .extract-side {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Login */
.login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background:
        radial-gradient(ellipse 70% 50% at 15% 10%, rgba(61, 186, 122, 0.14), transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 90%, rgba(61, 186, 122, 0.07), transparent 50%),
        var(--bg);
}

.login-shell {
    width: min(420px, 100%);
}

.login-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 4px);
    padding: 2.25rem 1.75rem;
    box-shadow: var(--shadow);
    animation: rise 0.55s var(--ease) both;
}

.login-brand {
    text-align: center;
    margin-bottom: 1.75rem;
}

.login-brand .brand-mark {
    display: inline-block;
    margin-bottom: 1rem;
}

.login-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.login-sub {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.login-form .field-label {
    margin-top: 1rem;
}

.login-form .field-label:first-of-type {
    margin-top: 0;
}

.login-submit {
    width: 100%;
    margin-top: 1.35rem;
}

.user-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.user-name {
    font-size: 0.85rem;
    color: var(--text-dim);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.logout-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}

.logout-link:hover {
    color: var(--danger);
}

/* Leads — status & remarks */
.leads-table-wrap {
    overflow-x: auto;
}

.leads-table {
    min-width: 960px;
}

.leads-table .block {
    display: block;
    margin-top: 0.15rem;
}

.select-sm {
    padding: 0.45rem 1.75rem 0.45rem 0.65rem;
    font-size: 0.82rem;
    min-width: 140px;
}

.status-cell {
    min-width: 150px;
}

.remarks-cell {
    min-width: 200px;
    max-width: 260px;
}

.remarks-input {
    min-height: 56px;
    resize: vertical;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
}

.btn-save-remarks {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    cursor: pointer;
}

.btn-save-remarks:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.status-select.status-new { border-color: #5a6a62; }
.status-select.status-no-answer { border-color: #e6b84d; color: #e6b84d; }
.status-select.status-callback { border-color: #6eb5ff; color: #6eb5ff; }
.status-select.status-email { border-color: #9b8cff; color: #9b8cff; }
.status-select.status-interested { border-color: var(--accent); color: var(--accent); }
.status-select.status-not-interested { border-color: var(--danger); color: var(--danger); }
.status-select.status-meeting { border-color: #4fd48c; color: #4fd48c; }
.status-select.status-closed { border-color: var(--muted); color: var(--muted); }
