/* ==============================================
   WICHITA DASHBOARD - EXTERNAL STYLESHEET
   Version 1.0.4
   Hosted at: https://twotreeservices.com/wichita/wichitastyle.css
   ============================================== */

:root {
    --primary: #22d3ee;
    --bg: #0f172a;
    --surface: #1e2937;
    --surface2: #111827;
    --text: #e2e8f0;
    --text-muted: #64748b;
    --border: #475569;
}

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

html, body {
    height: 100%;
    font-family: 'Inter', system_ui, -apple-system, sans-serif;
    background-color: var(--bg);
    color: var(--text);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* HEADER */
header {
    height: 80px;
    background-color: #111827;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 32px;
    flex-shrink: 0;
    z-index: 50;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.header-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: -4px;
}

/* Right-side header controls (link + hamburger). margin-left:auto pins group right. */
.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-linkedin-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #1e2937;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.header-linkedin-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #243044;
}

/* Buttons & Interactions */
button,
.widget-header-button,
.hamburger {
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
}

.widget-header-button {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

/* Direct header child (production) still pins right; inside .header-actions, parent pins. */
.hamburger {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-left: auto;
}

.header-actions .hamburger {
    margin-left: 0;
}

.widget-header-button:hover,
.hamburger:hover {
    background-color: #1e2937;
}

/* GRID */
.grid-container {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, 300px);
    gap: 10px;
    justify-content: center;
    align-content: start;
    padding: 30px 20px;
    overflow-y: auto;
}

.slot {
    width: 300px;
    height: 300px;
    border: 2px solid var(--border);
    border-radius: 12px;
    background-color: #1e2937;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot:hover {
    border-color: #64748b;
}

/* WIDGET */
.widget {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--surface);
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.4);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.widget:hover {
    /* Under-glow limited to ~6px reach (was 20/25px blur — too far) */
    box-shadow: 0 4px 6px -1px rgba(34, 211, 238, 0.35);
    transform: translateY(-3px);
}

.widget-header {
    height: 25px;
    background-color: var(--surface2);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 500;
    color: #cbd5e1;
    flex-shrink: 0;
}

.widget-header-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.widget-header-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.widget-header .close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    padding: 0;
    border-radius: 3px;
}

.widget-header .close-btn:hover {
    background-color: #1e2937;
    color: #f87171;
}

.widget-info-button {
    color: var(--text-muted);
}

.widget-info-button:hover {
    color: var(--primary);
}

.widget-info-popup {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 20;
    background: rgba(15, 23, 42, 0.72);
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.widget-info-popup.open {
    display: flex;
}

.widget-info-card {
    position: relative;
    max-width: 240px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
}

.widget-info-text {
    margin: 0;
    padding: 28px 14px 14px;
    font-size: 12px;
    line-height: 1.45;
    color: #cbd5e1;
    text-align: center;
}

.widget-info-close {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    font-size: 16px;
    color: var(--text-muted);
}

.widget-info-close:hover {
    color: var(--text);
    background-color: #1e2937;
}

.widget-content {
    flex: 1;
    padding: 5px;
    overflow: auto;
    display: flex;
    flex-direction: column;
}

.widget-footer {
    height: 20px;
    background-color: var(--surface2);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.close-btn {
    font-size: 16px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}

.close-btn:hover {
    color: #f87171;
}

/* SHARED CHART CONTAINER */
.chart-container {
    flex: 1;
    position: relative;
    min-height: 205px;
}

/* CLOCK WIDGET */
.clock-time {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -2px;
    color: var(--primary);
    font-family: monospace;
    margin-bottom: 8px;
}

.clock-date {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.sun-info {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* WEATHER WIDGET */
.weather-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}

.weather-tab {
    flex: 1;
    padding: 6px 0;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.weather-tab.active {
    border-bottom: 3px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
}

.forecast-container {
    flex: 1;
    padding: 2px 6px;
    overflow-y: auto;
}

.forecast-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 6px;
    border-bottom: 1px solid #334155;
}

.forecast-time { font-size: 13.5px; color: #cbd5e1; width: 52px; flex-shrink: 0; }
.forecast-temp { font-size: 21px; font-weight: 600; color: var(--primary); width: 72px; text-align: right; line-height: 1.1; flex-shrink: 0; }
/* High/low range (4-day): override fixed temp width so 3-digit highs stay on one line */
.forecast-temp.forecast-temp-range {
    width: max-content;
    min-width: 0;
    max-width: none;
    white-space: nowrap;
    flex: 0 0 auto;
}
.forecast-temp-lo { font-size: 12px; font-weight: 500; color: var(--text-muted); white-space: nowrap; }
.forecast-emoji { font-size: 26px; width: 32px; text-align: center; flex-shrink: 0; }
.forecast-condition {
    font-size: 12.5px;
    color: #9ca3af;
    text-transform: capitalize;
    text-align: right;
    flex: 1 1 0;
    min-width: 0;
    padding-left: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.current-layout {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.weather-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.weather-temp {
    font-size: 52px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.weather-icon { font-size: 48px; }
.weather-condition { font-size: 16px; color: #cbd5e1; text-transform: capitalize; }

.weather-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
    width: 100%;
    max-width: 220px;
}

/* AIR QUALITY WIDGET */
.aqi-current-layout {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 8px 10px 4px;
    min-height: 0;
}

.aqi-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.aqi-badge {
    min-width: 92px;
    padding: 10px 12px;
    border: 2px solid;
    border-radius: 14px;
    text-align: center;
}

.aqi-value {
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.aqi-category {
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.aqi-meta {
    flex: 1;
    min-width: 0;
}

.aqi-meta-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.aqi-meta-value {
    font-size: 16px;
    font-weight: 600;
    color: #cbd5e1;
    margin-top: 2px;
}

.aqi-meta-time {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 4px;
}

.aqi-pollutant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 6px;
}

.aqi-pollutant-card {
    border: 1px solid;
    border-radius: 10px;
    padding: 6px 4px;
    text-align: center;
}

.aqi-pollutant-name {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.aqi-pollutant-value {
    font-size: 18px;
    font-weight: 700;
    margin-top: 2px;
}

.aqi-source-note {
    font-size: 8px;
    color: var(--text-muted);
    text-align: center;
    margin-top: auto;
    padding-top: 4px;
    border-top: 1px solid var(--border);
}

.aqi-forecast-pollutant {
    font-size: 11px;
    color: var(--text-muted);
    width: 52px;
    text-align: right;
}

.aqi-action-day {
    display: inline-block;
    margin-left: 6px;
    padding: 1px 5px;
    border-radius: 6px;
    background: rgba(248, 113, 113, 0.2);
    color: #f87171;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

/* PLATFORM STATUS WIDGET */
.status-widget {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
}

.status-header {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    padding: 4px 8px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.status-list {
    flex: 1;
    overflow-y: auto;
    padding: 4px 6px;
}

.status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 6px;
    border-bottom: 1px solid #334155;
    text-decoration: none;
    color: inherit;
    border-radius: 6px;
    transition: background-color 0.15s ease;
}

.status-row:last-child {
    border-bottom: none;
}

.status-row:hover {
    background-color: #334155;
}

.status-row-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.status-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}

.status-names {
    min-width: 0;
    flex: 1;
}

.status-name {
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.2;
}

.status-detail {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 2px;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 4px 8px;
    border-radius: 999px;
    text-transform: uppercase;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-footer-note {
    font-size: 8px;
    color: var(--text-muted);
    text-align: center;
    padding: 4px 6px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

/* FIRE & EMS PULSE WIDGET */
.fire-ems-root {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    padding: 4px 6px 2px;
    gap: 6px;
    overflow: hidden;
}

.fire-ems-content-header {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.2;
    padding: 1px 2px 0;
}

.fire-ems-message {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    padding: 16px;
}

.fire-ems-message-error {
    color: #f87171;
}

.fire-ems-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 12px;
    line-height: 1.3;
}

.fire-ems-table th,
.fire-ems-table td {
    padding: 4px 5px;
    border-bottom: 1px solid #334155;
    vertical-align: middle;
}

.fire-ems-table thead th {
    font-size: 10px;
    font-weight: 600;
    color: #94a3b8;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    background: #111827;
    border-bottom: 1px solid #475569;
}

.fire-ems-table tbody tr:last-child th,
.fire-ems-table tbody tr:last-child td {
    border-bottom: none;
}

.fire-ems-table tbody tr:nth-child(even) {
    background: rgba(15, 23, 42, 0.45);
}

.fire-ems-table-summary {
    flex-shrink: 0;
    background: var(--surface2);
    border: 1px solid #334155;
    border-radius: 8px;
    overflow: hidden;
}

.fire-ems-table-summary tbody tr {
    background: transparent;
}

.fire-ems-table-summary tbody tr:nth-child(even) {
    background: transparent;
}

.fire-ems-summary-cell {
    width: 50%;
    text-align: center;
    vertical-align: middle;
    padding: 8px 6px 9px !important;
    border-bottom: none !important;
}

.fire-ems-summary-cell + .fire-ems-summary-cell {
    border-left: 1px solid #334155;
}

.fire-ems-summary-value {
    font-size: 20px;
    font-weight: 600;
    color: #fb923c;
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.fire-ems-summary-label {
    margin-top: 4px;
    font-size: 10px;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.25;
}

.fire-ems-th-num,
.fire-ems-td-num {
    text-align: right !important;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.fire-ems-table thead .fire-ems-th-num:first-child,
.fire-ems-table tbody .fire-ems-td-num:first-child {
    width: 22px;
    text-align: center !important;
    color: #64748b;
    font-weight: 600;
}

.fire-ems-table thead th.fire-ems-th-num:nth-child(3),
.fire-ems-table tbody td.fire-ems-td-num:nth-child(3) {
    width: 44px;
}

.fire-ems-table thead th.fire-ems-th-num:nth-child(4),
.fire-ems-table tbody td.fire-ems-td-num:nth-child(4) {
    width: 42px;
    color: #94a3b8;
}

.fire-ems-td-type {
    color: #e2e8f0;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fire-ems-table tbody td.fire-ems-td-num:nth-child(3) {
    color: #fb923c;
    font-weight: 600;
}

.fire-ems-section {
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: 3px;
}

.fire-ems-section-grow {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.fire-ems-section-title {
    font-size: 10px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.fire-ems-section-hint {
    font-weight: 500;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
    margin-left: 4px;
}

.fire-ems-table-wrap {
    min-height: 0;
    overflow: auto;
    border: 1px solid #334155;
    border-radius: 8px;
    background: var(--surface2);
}

.fire-ems-table-wrap .fire-ems-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
}

.fire-ems-empty {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    padding: 10px 6px;
}

.fire-ems-section-grow .fire-ems-table-wrap {
    flex: 1;
}

/* HAPPY WIDGET */
.happy-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
}

.happy-face {
    font-size: 110px;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.happy-face:hover {
    transform: scale(1.15) rotate(8deg);
}

.happy-slogan {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.2;
    min-height: 42px;
}

/* EMPTY SLOT */
.empty-text {
    text-align: center;
    font-size: 13px;
    color: #334155;
    opacity: 0.45;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 8px;
    opacity: 0.12;
    transition: opacity 0.2s ease;
}

.empty-hint {
    font-size: 11px;
    margin-top: 6px;
    color: #334155;
    opacity: 0.55;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.slot:hover .empty-text,
.slot:hover .empty-hint {
    color: #475569;
    opacity: 0.7;
}

.slot:hover .empty-icon {
    opacity: 0.22;
}

/* MODALS */
#modal-backdrop,
#quicklinks-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
}

#quicklinks-modal.flex {
    display: flex;
}

.modal-content,
.quick-modal-content {
    background-color: var(--surface);
    width: 100%;
    max-width: 520px;
    margin: 24px;
    border-radius: 16px;
    overflow: hidden;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.5);
}

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

.modal-body,
.quick-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.modal-footer,
.quick-modal-footer {
    padding: 14px 20px;
    background: #111827;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

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

.slot-control .label,
.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.slot-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.widget-palette-section {
    margin-top: 20px;
}

.widget-palette-section .section-label {
    margin-bottom: 10px;
}

#slot-slider {
    width: 100%;
    accent-color: var(--primary);
}

.modal-footer { text-align: right; }
.quick-modal-footer { justify-content: flex-end; gap: 12px; }

.modal-input {
    width: 100%;
    background-color: #111827;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: border 0.2s;
    margin-top: 8px;
}

.modal-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34,211,238,0.15);
}

.modal-btn {
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-btn-cancel {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.modal-btn-cancel:hover {
    background: #334155;
    color: var(--text);
}

.modal-btn-save {
    background: var(--primary);
    color: #0f172a;
    border: none;
}

.modal-btn-save:hover {
    background: #67e8f9;
}

/* WIDGET PALETTE */
.widget-palette-folders {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.palette-folder {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #111827;
    overflow: hidden;
}

.palette-folder-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background-color 0.15s ease;
}

.palette-folder-header:hover {
    background: #1e2937;
}

.palette-folder-chevron {
    font-size: 10px;
    color: var(--text-muted);
    width: 12px;
    flex-shrink: 0;
    transition: transform 0.15s ease;
    display: inline-flex;
    justify-content: center;
}

.palette-folder.open .palette-folder-chevron {
    transform: rotate(90deg);
    color: var(--primary);
}

.palette-folder-icon {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.palette-folder-name {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.palette-folder-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background: #1e2937;
    border: 1px solid var(--border);
    border-radius: 999px;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.palette-folder-body {
    display: none;
    padding: 0 10px 10px;
}

.palette-folder.open .palette-folder-body {
    display: block;
}

.widget-palette-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.palette-card {
    padding: 10px 12px;
    background: #1e2937;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: border-color 0.15s ease, background-color 0.15s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-align: left;
    min-height: 0;
}

.palette-card:hover {
    border-color: var(--primary);
    background: #243044;
}

.palette-icon {
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
}

.palette-title {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.25;
}

/* QUICK LINKS */
.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 8px;
    margin: 4px 0;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    color: var(--text);
}

.quick-link:hover {
    background-color: #334155;
    color: var(--primary);
}

.quick-link-icon {
    color: var(--primary);
    font-size: 18px;
}