/* Style the audio player container */
.audio-player {
    width: 100%;
    color: rgb(48, 56, 65);
    padding: 10px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: left;
}

/* Title Styling */
.audio-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    align-items: left;
}

/* Controls container */
.audio-controls {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 10px;
    border: none !important;
}

/* Button styles */
.audio-player .control-btn,
.audio-player .volume-btn {
    background: none !important;
    border: none !important;
    outline: none !important; 
    box-shadow: none !important; 
    font-size: 22px;
    cursor: pointer;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.audio-player .control-btn:hover,
.audio-player .volume-btn:hover {
    color: #171717;
}

/* Timestamp */
.timestamp {
    font-size: 12px;
    min-width: 60px;
    text-align: center;
}

/* Progress Bar */
.progress-container {
    flex-grow: 1;
    margin: 0 10px;
    position: relative;
    display: flex;
    align-items: center;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: #a3a3a3;
    border-radius: 3px;
    cursor: pointer;
}

.progress {
    width: 0%;
    height: 5px;
    background: #171717;
    border-radius: 3px;
}

/* Volume */
.volume-btn {
    font-size: 22px;
    cursor: pointer;
    border: none !important;
    background: none;
    color: #171717;
}
