.audio-player {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}
.audio-player button {
    margin-right: 10px;
}
.progress-container {
    flex-grow: 1;
    cursor: pointer; /* Para mostrar que é interativo */
    position: relative;
}
.progress {
    height: 8px;
    background-color: #e9ecef;
}
.progress-bar {
    background-color: #007bff;
}
.time {
    margin-left: 10px;
    font-size: 0.9rem;
    color: #6c757d;
}

.audio-info {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 5px;
}

.audio-details {
display: flex;
flex-direction: column;
}

.audio-title {
margin: 0;
font-size: 1.2rem;
font-weight: bold;
}

.audio-radio {
font-size: 0.9rem;
color: #6c757d;
}

.audio-date {
font-size: 0.9rem;
color: #6c757d;
white-space: nowrap;
}