
@import url("./sit-wp-cuapps-events.css");

/*--- Default Plugin Style Sheet File ---*/

audio {
    display: none; /* Hide the native audio element */
}


.custom-audio-player {
    width: 100%;
    max-width: 100%;
    background: #9fb2ab;
    border-radius: 0.3em;
    padding: 0.5em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.custom-audio-player-mini {
    width: 100%;
    max-width: 100%;
    background: #f1f1f1;
    border-style: solid;
    border-radius: 0.3em;
    border-width: 0.2em;
    border-color: #9fb2ab;
    padding: 0.5em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.custom-controls {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.play-pause {
    background: #000;
    color: white;
    border: none;
    min-width: 36px;
    cursor: pointer;
}

.progress {
    flex-grow: 1;
    height: 6px;
    border-radius: 3px;
}

.volume {
    width: 60px;
}

.time {
    font-family: monospace;
    min-width: 40px;
    text-align: center;
}

