/* Form Elements - owned by UIControlsManager.js */

.shader-select {
    width: 100%;
    padding: 8px;
    background: #2d2d4d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.shader-select option {
    background: #2d2d4d;
    color: white;
}

.shader-select:hover,
.shader-select:focus {
    background: #3d3d6d;
}

button {
    background: #2d2d4d;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

button:hover,
button:focus {
    background: #3d3d6d;
    transform: translateY(-2px);
}

input[type="range"] {
    width: 100%;
    background: #2d2d4d;
    margin: 4px 0;
}

input[type="color"] {
    width: 50px;
    height: 30px;
    border: none;
    background: none;
}
