.audio-player {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    max-width: 500px;
    margin: 2rem auto;
}

.controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.control-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    transition: all 0.2s ease;
}

.control-button:hover {
    color: #0d6efd;
}

.play-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background-color: #0b5ed7;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-slider {
    width: 80px;
    height: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.volume-slider-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    appearance: none;
    height: 4px;
    border-radius: 2px;
}

.volume-level {
    height: 100%;
    background-color: #0d6efd;
    border-radius: 2px;
}
