#plot {
    width: 100%;
    height: 600px;
    background: #272934;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.controls-container {
    background: #272934;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.slider-grid label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #f8f8f2;
}

.slider-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.reset-button {
    background-color: #44475a;
    color: #bd93f9;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 9999px;
    font-size: 1rem;
    transition: background-color 0.2s ease;
    font-weight: bold;
    justify-self: end;
    grid-column: 3;
    grid-row: 2;
    margin-top: 10px;
}

.reset-button:hover {
    background-color: #272934;
}

.slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #f8f8f2;
}

.slider-value {
    font-family: monospace;
    font-weight: bold;
    color: #bd93f9;
}

.dracula-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #44475a;
    border-radius: 3px;
    cursor: pointer;
    margin: 0.5rem 0;
}

.dracula-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #bd93f9;
    border-radius: 50%;
    border: none;
    box-shadow: 0 0 5px rgba(189, 147, 249, 0.5);
}

.dracula-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #bd93f9;
    border: none;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(189, 147, 249, 0.5);
}

@media (max-width: 768px) {
    .slider-grid {
        grid-template-columns: 1fr;
    }
    
    .reset-button {
        grid-column: 1;
        grid-row: auto;
        justify-self: center;
        width: 100%;
        margin-top: 20px;
    }
}
