html,

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: #60a5fa;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.8);
}

input[type="range"]::-moz-range-thumb {
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: #60a5fa;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.8);
}

#title,
#lengthValue,
label span,
#notification,
.text-gray-300,
.text-gray-400 {
    color: #ffffff !important;
}

#title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

label:hover span {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(96, 165, 250, 0.6);
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}