body {
    font-family: 'Montserrat';
    background-color: #f1f3f4;
}

#loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #FFBC64;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

#loading.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: white;
    animation: spin 1s ease infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#frame01 {
    height: 80vh;
}

.overflow-y-scroll::-webkit-scrollbar {
    width: 5px;
}

.overflow-y-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.overflow-y-scroll::-webkit-scrollbar-thumb {
    background: #888;
}

.overflow-y-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.jinglenNmbr {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #858585;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
}

.jingleBtn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
}

.jingleName {
    font-size: 8.5px;
    font-weight: 700;
    text-wrap: nowrap;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 4rem;
}


.jingleDiv {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    height: 2rem;
    gap: 0.5rem;
}

.jinglenNmbr2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #858585;
    color: white;
    width: 100%;
    height: 20px;
    border-radius: 50%;
    text-align: center;
}

.jingleName2 {
    width: 100%;
}

.chatHeight {
    height: 63vh;
}
.listHeight {
        height: 73vh;
    }


@media screen and (min-height:700px) {
    .listHeight {
        height: 75vh;
    }

    .chatHeight {
        height: 63vh;
    }

    .songheight {
        height: 57vh;
    }

    .songsCss {
        font-size: smaller;
    }
    .scriptHeight{
        height: 87.5vh;
    }
    .scriptMaxW{
        max-width: 70vh;
    }
}

@media screen and (min-height:900px) {
    .listHeight {
        height: 79vh;
    }

    .chatHeight {
        height: 70vh;
    }

    .songheight {
        height: 65vh;
    }

    .songsCss {
        font-size: small;
    }

    .scriptHeight{
        height: 89.5vh;
    }

    .scriptMaxW{
        max-width: 70vh;
    }
}
