.audio-player {
    background: #f1f1f1 !important;
    margin: 10px 0 !important;
    border: 1px solid #ddd !important;
    padding: 10px !important;
    border-radius: 8px !important;
    display: flex !important;
    justify-content: start !important;
    align-items: center !important;
    text-align: center !important;
    gap: 10px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    width: 280px !important;
    color: #000;
}

.audio-wrapper {
    display: none;
}

.play-pause {
    display: flex;
    cursor: pointer;
}

.play-pause:hover {
    opacity: 0.9;
}

.play-pause span {
    font-size: 36px;
}

.seek-wrapper {
    min-width: 175px !important;
    max-width: 175px !important;
    width: 175px !important;
}

.timeline {
    width: 100%;
    height: 4px;
    background: #ddd;
    display: flex;
    align-items: center;
    border-radius: 5px;
}

.seekObj {
    width: 12px;
    height: 12px;
    background: #484848;
    border-radius: 50%;
    margin-left: 0;
}

.player-controls {
    display: flex;
    font-size: 14px;
}