/* Demo CSS for audio player */
.audio-player {
    width: 100%;
    max-width: 300px;
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
}

.audio-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.play-button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

.progress-bar {
    flex: 1;
    height: 5px;
    background-color: #ddd;
    border-radius: 3px;
    margin: 0 10px;
    position: relative;
}

.progress {
    height: 100%;
    background-color: #4CAF50;
    border-radius: 3px;
    width: 0%;
}
