.audio-progress {
    flex: 1;
    height: 1rem;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.audio-progress::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 0.5px;
    background-color: var(--grey-color);
}

.audio-progress-fill {
    position: absolute;
    left: 0;
    height: 0.5px;
    width: 0%;
    background-color: var(--text-color);
    pointer-events: none;
}

.audio-icon {
    font-size: 0.8rem;
    color: var(--text-color);
}

.audio-play-button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.8rem;
    color: var(--blue-color);
    padding: 0;
    white-space: nowrap;
}
