@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    font-family: "Poppins", sans-serif;
}

.content {
    padding: 25px;
}

.content h1 {
    margin-top: 25px;
    font-size: 20px !important;
}

@media (prefers-color-scheme: light) {
    .collapsible {
        background-color: #006eff;
        color: white;
        cursor: pointer;
        padding: 18px;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 15px;
        border-radius: 25px;
        margin-bottom: 5px;
    }

    .active,
    .collapsible:hover {
        background-color: rgb(245, 250, 255);
        color: #006eff;
    }

    .collapsible:after {
        content: '\002B';
        color: white;
        font-weight: bold;
        float: right;
        margin-left: 8px;
    }

    .active:after {
        content: "\2212";
    }

    .content {
        padding: 0px 25px;
        max-height: 0;
        transition: 0.2s ease-out;
        background-color: #ffffff;
        border-radius: 25px;
        width: 100%;
        margin-bottom: 5px;
        overflow-y: scroll;
    }

    #popup::-webkit-scrollbar {
        width: 0px;
        background: rgba(0, 0, 0, 0);
    }

    ::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0);
    }

    ::-webkit-scrollbar-thumb {
        background: rgb(0, 0, 0);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #006eff;
    }


    .notificationarea {
        max-height: 20%;

    }

    #popup {
        max-height: 95% !important;
        overflow: scroll !important;
    }

}

@media (prefers-color-scheme: dark) {
    .collapsible {
        background-color: #8FBFFF;
        color: rgb(0, 0, 0);
        cursor: pointer;
        padding: 18px;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 15px;
        border-radius: 25px;
        margin-bottom: 5px;
    }

    .active,
    .collapsible:hover {
        background-color: #000000;
        color: #8FBFFF;
    }

    .collapsible:after {
        content: '\002B';
        color: white;
        font-weight: bold;
        float: right;
        margin-left: 5px;
    }

    .active:after {
        content: "\2212";
    }

    .content {
        padding: 0px 25px;
        max-height: 0;
        transition: 0.2s ease-out;
        background-color: #ffffff00;
        color: white;
        border-radius: 25px;
        width: 100%;
        margin-bottom: 5px;
        overflow-y: scroll;
    }

    #popup::-webkit-scrollbar {
        width: 0px;
        background: rgba(0, 0, 0, 0);
    }

    ::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0);
    }

    ::-webkit-scrollbar-thumb {
        background: rgb(0, 0, 0);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #006eff;
    }


    .notificationarea {
        max-height: 20%;

    }

    #popup {
        max-height: 95% !important;
        overflow: scroll !important;
    }
}

@media (max-width: 500px) {
    .collapsible {
        background-color: #ff9900;
        color: white;
        cursor: pointer;
        padding: 16px;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 12px;
        border-radius: 25px;
        margin-bottom: 5px;
    }

    .active,
    .collapsible:hover {
        background-color: rgb(255, 246, 238);
        color: #ff9900;
    }

    .collapsible:after {
        content: '\002B';
        color: white;
        font-weight: bold;
        float: right;
        margin-left: 5px;
    }

    .active:after {
        content: "\2212";
    }

    .content {
        padding: 0px 5px;
        max-height: 0;
        transition: 0.2s ease-out;
        background-color: #ffffff00;
        color: black;
        border-radius: 25px;
        width: 100%;
        margin-bottom: 5px;
        overflow-y: scroll;
        font-size: small;
    }
    
    .notificationarea {
        overflow: scroll !important;
        height: 80%;
        max-height: 80%;
    }
    
    #popup {
        max-height: 100% !important;
    }
    
}