.audio-player {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cover img {
    width: 100%;
    border-radius: 10px;
}

.info h3 {
    margin: 10px 0 5px;
    font-size: 18px;
}

.info p {
    font-size: 14px;
    color: #777;
}

.controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.controls button {
    background: #36b3a8;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.controls button:hover {
    background: #309f96;
}

#progressBar {
    flex-grow: 1;
    margin: 0 10px;
}

#currentTime, #duration {
    font-size: 12px;
    color: #333;
}