.audio-container {
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

.transcript {
    width: 100%;
    height: 35vh;

    background-color: #fff;
    border: none !important;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left !important;
    padding: 32px;

    overflow: scroll !important;
    scrollbar-width: thin;
    scrollbar-color: #000 #fff;
}

.waveform-time-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#elapsed, #total {
    flex: 0 0 auto; /* Don't grow or shrink but allow these to be based on content width */
    padding: 10px;
}

.waveform-container {
    flex: 1; /* Grow to fill the space */
    height: 100px;
}

.controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

.controls button img {
    width: 32px;
}

button {
    font-family: 'IBM Plex mono', sans-serif;
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    background: none;
}

#playPause {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 16px;
    background-color: #EDFF7C;
    border: 1px solid #000;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px 0 20px;
}

.highlight {
    background-color: #EDFF7C;
    font-weight: bold;
    padding: 4px;
}

.centerText {
    text-align: center;
}

p {
    margin-bottom: 0;
}

.bg-lightgrey {
    background-color: #F7F8F8;
}   

.circle {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 5px;
    position: relative;
    top: 5px;
}

.c-0 {
    background-color: #D9F33B;
}

.c-1 {
    background-color: #7B8446;
}

.c-2 {
    background-color: #0A1E31;
}

.c-3 {
    background-color: #EFE500;
}

.c-4 {
    background-color: #F3B43B;
}

@media (max-width: 768px) {
    /* .row {
        flex-wrap: wrap !important;
    } */

}

.btn {
    padding: 5px 10px !important;
}

.btn-fullwidth {
    width: 100%;
    margin-top: 20px !important;
}

.error {
    color: red;
    padding: 20px;
    height: 30vh;

    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

.password {
    color: #000;

    padding: 20px;
    height: 30vh;

    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

.hide {
    display: none !important;
}

.show {
    display: flex !important;
}

.color-red {
    color: red;
}

.my-modal {
    max-width: 300px !important;
}

.popover {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    z-index: 1000;
    width: 250px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.options-btn {
    position: relative;
}