.body {
    height: 50px; /* Adjusts dynamically on mobile */
}

.mp3-player {
    background: #454747;
    padding: 2px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.controls button {
    margin: 5px;
    padding: 5px 15px;
    border: none;
    border-radius: 25px;
    background: #292a2b;
    color: white;
    cursor: pointer;
    font-size: 12px;
}

.controls button:hover {
    background: #0d0d0e;
}

.volume-control {
    margin-top: 20px;
}

#volume-slider {
    width: 100%;
    margin-top: 5px;
    -webkit-appearance: none;
    height: 5px;
    background: linear-gradient(to right, #060e0d 50%, #ccc 50%);
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 15px;
    width: 15px;
    background: #020808;
    border-radius: 50%;
    cursor: pointer;
}

#volume-slider::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background: #ffe600;
    border-radius: 50%;
    cursor: pointer;
}
