.quick-cards { 
    display:flex; 
    gap:16px; 
    flex-wrap:wrap; 
    margin-bottom:24px; 
}
.chart-toggles {
    display:flex;
    justify-content: center;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin:0 0 10px;
    padding:15px 10px;
    border:1px solid #1e293b;
    border-radius:6px;
    background:#040b1b;
}
.chart-toggle {
    display:inline-flex;
    align-items:center;
    gap:15px;
    color:#cbd5e1;
    font-size:11px;
    cursor:pointer;
    user-select:none;
}
.chart-toggle input {
    position:absolute;
    opacity:0;
    pointer-events:none;
}
.chart-toggle-track {
    position:relative;
    width:28px;
    height:16px;
    border-radius:999px;
    background:#475569;
    transition:background .15s ease;
}
.chart-toggle-thumb {
    position:absolute;
    top:3px;
    left:3px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#e2e8f0;
    transition:transform .15s ease;
}
.chart-toggle input:checked + .chart-toggle-track {
    background:var(--toggle-color, #60a5fa);
}
.chart-toggle input:checked + .chart-toggle-track .chart-toggle-thumb {
    transform:translateX(12px);
    background:#fff;
}
.chart-toggle input:focus-visible + .chart-toggle-track {
    outline:2px solid #93c5fd;
    outline-offset:2px;
}
.chart-toggle-label {
    color:var(--toggle-color, #cbd5e1);
    font-weight:600;
}
.quick-card { 
    flex:1 1 420px; 
    min-width:340px; 
    background:#040b1b; 
    border:1px solid #1e293b; 
    border-radius:4px; 
    padding:16px; 
    cursor:pointer;
}
.quick-card:focus-visible {
    outline:2px solid #60a5fa;
    outline-offset:2px;
}
.quick-card .qc-top { 
    display:flex; 
    align-items:center; 
    gap:10px; 
    margin-bottom:8px;
}
.quick-card .qc-symbol { 
    font-weight:700; 
    font-size:35px; 
    color:#e2e8f0;
}
.quick-card .qc-korname { 
    font-size:12px; 
    color:#94a3b8;
}
.quick-card .qc-price-row { 
    margin-left:auto; 
    text-align:right;
}
.quick-card .qc-price { 
    font-size:20px; 
    color:#cbd5e1;
}
.quick-card .qc-price span { 
    font-size:13px; 
}
.quick-card .qc-rate.up { 
    color:#00c073; 
}
.quick-card .qc-rate.down { 
    color:#f04f5a; 
}
.quick-card canvas.tie-chart { 
    display:block; 
    width:100%; 
    height:200px;
}
.quick-card .chart-control {
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:4px;
    cursor:default;
}
.quick-card .chart-control button {
    flex:0 0 42px;
    padding:3px 0;
    border:1px solid #334155;
    border-radius:4px;
    background:#1e293b;
    color:#cbd5e1;
    font-size:11px;
    cursor:pointer;
}
.quick-card .chart-control button:hover {
    background:#334155;
}
.quick-card .chart-control input[type="range"] {
    flex:1;
    min-width:0;
    accent-color:#60a5fa;
    cursor:grab;
}
.quick-card .chart-control input[type="range"]:active {
    cursor:grabbing;
}
.quick-card .qc-score-row { 
    display:flex; 
    gap:12px; 
    margin-top:10px; 
    font-size:12px; 
    color:#94a3b8; 
    flex-wrap:wrap;
}
.quick-card .qc-score-row .total.positive { 
    color:#00c073; 
    font-weight:700; 
}
.quick-card .qc-score-row .total.negative { 
    color:#f04f5a; 
    font-weight:700; 
}