.sc-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 580px;
    margin: 0 auto;
    padding: 1.5rem 0;
    color: #1a1a1a;
}

.sc-row {
    margin-bottom: 1.25rem;
}

.sc-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.sc-val {
    font-weight: 600;
    color: #1a1a1a;
}

.sc-range {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.sc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--sc-color, #27ae60);
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    cursor: pointer;
}

.sc-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--sc-color, #27ae60);
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    cursor: pointer;
}

.sc-results {
    background: #f7f7f5;
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.sc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 1rem;
}

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

.sc-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.sc-card-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}

.sc-card-value {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.sc-accent {
    color: var(--sc-color, #27ae60) !important;
}

.sc-bars {
    margin-top: 0.75rem;
}

.sc-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #666;
}

.sc-bar-label {
    min-width: 70px;
}

.sc-track {
    flex: 1;
    height: 6px;
    background: #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
}

.sc-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.sc-fill-main {
    background: var(--sc-color, #27ae60);
}

.sc-fill-light {
    background: #a8d5b5;
}

.sc-bar-pct {
    min-width: 36px;
    text-align: right;
    font-size: 12px;
    color: #888;
}

.sc-disclaimer {
    font-size: 11px;
    color: #aaa;
    margin: 1rem 0 0;
}
