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

:root {
    --bg: #0d0f12;
    --surface: #14181e;
    --surface2: #1c2028;
    --text: #e4e4e7;
    --text-dim: #71717a;
    --green: #22c55e;
    --amber: #f59e0b;
    --red: #ef4444;
    --blue: #3b82f6;
    --purple: #a78bfa;
    --border: #27272a;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    height: 100vh;
    overflow: hidden;
}

code, .mono {
    font-family: 'DM Mono', monospace;
}

/* Top Bar */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    height: 56px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-left h1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.topbar-left span {
    color: var(--text-dim);
    font-size: 13px;
}

.stats {
    display: flex;
    gap: 16px;
    align-items: center;
}

.stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-dim);
}

.stat-clickable {
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    user-select: none;
}

.stat-clickable:hover {
    border-color: var(--border);
    background: var(--surface2);
    color: var(--text);
}

.stat-clickable.stat-active {
    border-color: var(--blue);
    background: rgba(59, 130, 246, 0.08);
    color: var(--text);
}

.stat-value {
    font-family: 'DM Mono', monospace;
    font-weight: 600;
    color: var(--text);
    font-size: 15px;
}

.btn {
    padding: 6px 14px;
    border: none;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.15s;
}

.btn:hover { opacity: 0.85; }

.btn-primary {
    background: var(--blue);
    color: white;
}

.btn-green {
    background: var(--green);
    color: white;
}

.btn-red {
    background: var(--red);
    color: white;
}

.btn-ghost {
    background: var(--surface2);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-sm {
    padding: 4px 10px;
    font-size: 12px;
}

/* Layout */
.main {
    display: flex;
    height: calc(100vh - 56px);
}

/* Left Panel */
.panel-left {
    width: 320px;
    min-width: 320px;
    background: var(--surface);
    border-right: 1px solid var(--border);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.panel-left-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listing-item {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.1s;
}

.listing-item:hover {
    background: var(--surface2);
}

.listing-item.active {
    background: var(--surface2);
    border-left: 3px solid var(--blue);
}

.listing-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listing-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-dim);
}

.listing-price {
    font-family: 'DM Mono', monospace;
    font-weight: 600;
    font-size: 13px;
}

.price-green { color: var(--green); }
.price-amber { color: var(--amber); }
.price-red { color: var(--red); }

.score-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 20px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'DM Mono', monospace;
}

.score-high { background: rgba(34,197,94,0.15); color: var(--green); }
.score-mid { background: rgba(245,158,11,0.15); color: var(--amber); }
.score-low { background: rgba(239,68,68,0.15); color: var(--red); }

.status-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.status-new { background: rgba(113,113,122,0.2); color: #a1a1aa; }
.status-approved { background: rgba(59,130,246,0.15); color: var(--blue); }
.status-contacted { background: rgba(59,130,246,0.15); color: var(--blue); }
.status-negotiating { background: rgba(245,158,11,0.15); color: var(--amber); }
.status-won { background: rgba(34,197,94,0.15); color: var(--green); }
.status-lost { background: rgba(239,68,68,0.15); color: var(--red); }
.status-archived { background: rgba(113,113,122,0.2); color: #a1a1aa; }
.status-demo { background: rgba(167,139,250,0.15); color: var(--purple); }

/* Right Panel */
.panel-right {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-right.empty {
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state {
    text-align: center;
    color: var(--text-dim);
    font-size: 14px;
}

/* Detail sections */
.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.detail-title {
    font-size: 20px;
    font-weight: 600;
}

.detail-actions {
    display: flex;
    gap: 8px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
}

.price-card-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.price-card-value {
    font-family: 'DM Mono', monospace;
    font-size: 18px;
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.info-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
}

.info-item-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.info-item-value {
    font-size: 14px;
    font-weight: 500;
}

/* Messages */
.messages-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.message-thread {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.message {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 80%;
}

.message-inbound {
    background: var(--surface2);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.message-outbound {
    background: rgba(59,130,246,0.15);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.message-time {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 4px;
}

.no-messages {
    color: var(--text-dim);
    font-size: 13px;
    font-style: italic;
}

.message-voicemail {
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.25);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.voicemail-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

/* Drafts */
.draft-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px;
    margin-top: 10px;
}

.draft-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.tactic-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(167,139,250,0.15);
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.draft-body {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.draft-reasoning {
    font-size: 12px;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 10px;
}

.draft-actions {
    display: flex;
    gap: 8px;
}

.draft-edit-area {
    width: 100%;
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    min-height: 60px;
    margin-bottom: 8px;
}

.draft-edit-area:focus {
    outline: none;
    border-color: var(--blue);
}

/* Carfax / recalls */
.flags-section {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.flag-tag {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(239,68,68,0.12);
    color: var(--red);
}

.recall-tag {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(245,158,11,0.12);
    color: var(--amber);
}

.clean-tag {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(34,197,94,0.12);
    color: var(--green);
}

/* Config Panel */
.config-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 100;
}

.config-overlay.active {
    display: block;
}

.config-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100vh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    z-index: 101;
    transition: right 0.25s ease;
    display: flex;
    flex-direction: column;
}

.config-panel.active {
    right: 0;
}

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

.config-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.config-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.config-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.config-label {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}

.config-input {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}

.config-input:focus {
    outline: none;
    border-color: var(--blue);
}

.config-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.config-saved {
    font-size: 13px;
    color: var(--green);
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

/* Source filter pills */
.source-filter-bar {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.source-pill {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    background: var(--surface2);
    color: var(--text-dim);
    transition: all 0.15s;
    letter-spacing: 0.02em;
}

.source-pill:hover { opacity: 0.8; }
.source-pill.active { color: white; }
.source-pill.active[data-source="all"] { background: var(--blue); }
.source-pill.source-cl.active { background: #6366f1; }
.source-pill.source-mc.active { background: #22c55e; }

/* Source badge in listing item */
.source-badge {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.source-badge-craigslist { background: rgba(245,158,11,0.2); color: #fbbf24; }
.source-badge-marketcheck { background: rgba(59,130,246,0.2); color: #60a5fa; }
.source-badge-demo { background: rgba(167,139,250,0.15); color: var(--purple); }
.source-badge-carscom { background: rgba(245,158,11,0.2); color: #fbbf24; }
.source-badge-carfax { background: rgba(34,197,94,0.2); color: #4ade80; }
.source-badge-manual { background: rgba(113,113,122,0.2); color: #a1a1aa; }
.source-badge-vin { background: rgba(59,130,246,0.2); color: #60a5fa; }
.source-badge-call { background: rgba(245,158,11,0.2); color: #fbbf24; }

.source-pill.source-carscom.active { background: #f59e0b; color: #000; }

/* Scan dropdown */
.scan-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 200px;
    z-index: 50;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.scan-dropdown.active { display: block; }

.scan-option {
    padding: 8px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.1s;
}

.scan-option:hover { background: var(--surface2); }
.scan-option:first-child { border-radius: 8px 8px 0 0; }
.scan-option:last-child { border-radius: 0 0 8px 8px; }

.scan-divider {
    height: 1px;
    background: var(--border);
}

/* Source health table */
.source-health-table {
    width: 100%;
    margin-top: 10px;
    border-collapse: collapse;
    font-size: 12px;
}

.source-health-table th {
    text-align: left;
    color: var(--text-dim);
    font-weight: 500;
    padding: 6px 8px;
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 10px;
}

.source-health-table td {
    padding: 6px 8px;
    border-bottom: 1px solid var(--border);
}

.source-health-table .source-enabled { color: var(--green); }
.source-health-table .source-disabled { color: var(--text-dim); }

/* Facebook listing special styles */
.fb-contact-section {
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.fb-contact-section .fb-note {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.btn-fb {
    background: #1877F2;
    color: white;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
}

.btn-copy-opener {
    background: var(--surface2);
    color: var(--text);
    border: 1px solid var(--border);
    margin-left: 8px;
}

/* Add Listing Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
}
.modal-overlay.active { display: block; }

.modal-panel {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 480px;
    max-height: 90vh;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    z-index: 201;
    display: none;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    overflow: hidden;
}
.modal-panel.active {
    display: flex;
    transform: translate(-50%, -50%) scale(1);
}
.modal-panel .config-body {
    overflow-y: auto;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--green);
    color: #000;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    z-index: 300;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Spinner for fetch button */
.spinner-sm {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-sm 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 4px;
}
@keyframes spin-sm {
    to { transform: rotate(360deg); }
}

/* Field auto-fill indicators */
.config-input.field-auto {
    border-color: var(--green) !important;
    background: rgba(34, 197, 94, 0.08) !important;
}
.config-input.field-needs {
    border-color: var(--amber) !important;
    background: rgba(245, 158, 11, 0.08) !important;
}

/* Seller phone inline edit */
.seller-card {
    grid-column: 1 / -1;
}
.seller-phone-row {
    margin-top: 6px;
}
.seller-phone-prominent {
    font-family: 'DM Mono', monospace;
    color: var(--amber);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.seller-phone-hint {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 4px;
    font-style: italic;
}
.phone-updated-badge {
    font-size: 11px;
    color: var(--blue);
    background: rgba(59, 130, 246, 0.12);
    padding: 1px 7px;
    border-radius: 8px;
    margin-left: 6px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    vertical-align: middle;
}
.phone-edit-link, .phone-add-link {
    font-size: 12px;
    color: var(--text-dim);
    text-decoration: none;
    margin-left: 6px;
    cursor: pointer;
}
.phone-edit-link:hover, .phone-add-link:hover {
    color: var(--amber);
    text-decoration: underline;
}
.landline-warning {
    margin-top: 6px;
    font-size: 12px;
    color: var(--red);
    background: rgba(239, 68, 68, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.phone-add-link {
    margin-left: 0;
    color: var(--text-dim);
    font-size: 12px;
    font-style: italic;
}
#seller-phone-edit {
    gap: 6px;
    align-items: center;
    margin-top: 4px;
}
.phone-inline-input {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    background: var(--surface);
    border: 1px solid var(--amber);
    color: var(--text);
    padding: 4px 8px;
    border-radius: 4px;
    width: 160px;
}
.btn-xs {
    font-size: 11px !important;
    padding: 2px 8px !important;
}

/* Draft send-to indicator */
.draft-send-to {
    font-size: 12px;
    margin-bottom: 8px;
    color: var(--text-dim);
}
.send-to-number {
    font-family: 'DM Mono', monospace;
    color: var(--amber);
}
.send-to-warning {
    color: var(--red);
    font-size: 12px;
}
button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Phase badges */
.phase-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.phase-info_gathering {
    background: rgba(59,130,246,0.15);
    color: var(--blue);
}
.phase-negotiating {
    background: rgba(245,158,11,0.15);
    color: var(--amber);
}

/* AUTO label on auto-sent messages */
.auto-label {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    background: rgba(167,139,250,0.2);
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

/* Competing quote banner */
.competing-quote-banner {
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}
.competing-quote-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.competing-quote-value {
    font-family: 'DM Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
}
.competing-quote-source {
    font-size: 12px;
    color: var(--text-dim);
    font-style: italic;
}

/* Info gathering progress */
.info-progress {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
    font-size: 12px;
}
.info-progress-label {
    font-weight: 600;
    color: var(--text-dim);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.info-check {
    font-family: 'DM Mono', monospace;
    font-weight: 600;
}
.info-have {
    color: var(--green);
}
.info-need {
    color: var(--red);
    opacity: 0.7;
}

/* Custom message section */
.custom-message-section {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.custom-message-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}
.custom-message-input {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 6px;
    resize: vertical;
    margin-bottom: 6px;
}
.custom-message-input:focus {
    outline: none;
    border-color: var(--text-dim);
}
.custom-send-btn {
    float: right;
}

/* Distance badges */
.distance-badge {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.distance-local {
    background: rgba(34,197,94,0.15);
    color: var(--green);
}
.distance-ships {
    background: rgba(59,130,246,0.15);
    color: var(--blue);
}

/* Listing URL in detail header */
.listing-url-link {
    color: var(--blue);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}
.listing-url-link:hover {
    text-decoration: underline;
}
.listing-url-none {
    color: var(--text-dim);
    font-size: 12px;
}
.listing-url-add {
    color: var(--blue);
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
}
.listing-url-add:hover {
    text-decoration: underline;
}

/* Listing card top row with delete X */
.listing-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4px;
}
.listing-link-icon {
    color: var(--blue);
    font-size: 11px;
    opacity: 0.6;
}
.listing-delete-x {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.15s, color 0.15s;
    padding: 0 2px;
    flex-shrink: 0;
}
.listing-item:hover .listing-delete-x {
    opacity: 1;
}
.listing-delete-x:hover {
    color: var(--red);
}
