.soundbae-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.soundbae-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 500px;
    text-align: center;
    font-family: sans-serif;
    max-width: 90vw;
}

.soundbae-modal-content button {
    padding: 10px 16px;
    margin: 5px;
    background: #c03c67;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#toggleRecordBtn{
    min-width: 143px;
    margin-bottom: 10px;
}
#soundbaeActions{
    justify-content: center;
}
#soundbaeActions button,
#soundbaeActions a {
    margin: 0 10px;
    padding: 10px 16px;
    background: transparent;
    color: #000;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
}

.soundbae-modal-content button:disabled {
    opacity: 0.85;
    cursor: not-allowed;
}

.soundbae-trigger-button {
    padding: 10px 18px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.selectInput{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#soundbaePlayPause{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 48px;
}
#soundbaeWave{
    flex-grow: 1;
}


@media screen and (max-width: 1000px){
    #soundbaeInputWrapper{
    display: none;
    }
}





/* Delay slider styles */
#delaySlider {
    -webkit-appearance: none;
    height: 8px;
    background: #ddd;
    border-radius: 4px;
    margin: 10px 0;
}

#delaySlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
}

#delaySlider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
}

#delayValue {
    display: inline-block;
    min-width: 50px;
    text-align: right;
    margin-left: 10px;
    font-size: 14px;
}