/* Größenregler Styling für die Demo */
.size-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    padding: 6px 10px;
    background: rgba(148, 163, 184, 0.12);
    border-radius: 10px;
}

.size-control label {
    font-size: 14px;
    color: #1f2937;
    white-space: nowrap;
}

.size-slider {
    flex: 1;
    height: 6px;
    appearance: none;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 999px;
    outline: none;
    cursor: pointer;
}

.size-slider::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #1d4ed8;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
    transition: transform 0.2s ease;
}

.size-slider::-webkit-slider-thumb:hover {
    transform: scale(1.08);
}

.size-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #1d4ed8;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
    transition: transform 0.2s ease;
}

.size-slider::-moz-range-thumb:hover {
    transform: scale(1.08);
}

.size-value {
    min-width: 48px;
    text-align: right;
    font-size: 13px;
    color: #475569;
    font-weight: 600;
}
