.main-body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.logo {
    font-size: larger;
    display: flex;
    align-items: center;
}

.main-header {
    background-color: black;
    color: white;
    /*padding: 1em 2em;*/
    font-size: large;
    padding-left: 30px;
    padding-right: 30px;
}

.header {
    margin-left: 1em;
    font-size: 1em;
    font-family: 'SST W20 Medium', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: white;
}

.menu {
    background-color: #ebe8e8;
    padding: 1em 2em;
    width: 30%;
    height: 89vh;
    overflow: hidden;
}

.main-container {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    min-height: 100vh;
}

.dropdowns {
    width: 100%;
    font-size: smaller;
    margin-top: 5%;
}

.divSelect {
    margin-bottom: 10px;
}

.custom-dropdown {
    position: relative;
    
}

    .custom-dropdown::after {
        content: '';
        position: absolute;
        right: 10px;
        top: 45%;
        transform: translateY(-50%);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 12px solid #fff; /* Triangle-down */
        pointer-events: none;
    }

.dropdown {
    background-color: dodgerblue;
    color: white;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 15px;
    font-size: 1em;
    appearance: none; /* Remove the default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
}

    .dropdown:focus {
        border-color: #007bff;
    }

.icon-placeholder,
.mobile-icon-placeholder {
    text-align: center;
    margin-bottom: 10px;
    justify-content: center;
}

.icon-placeholder img,
.mobile-icon-placeholder img {
    text-align: center;
    margin-bottom: 10px;
    justify-content: center;
}

.icon1,
.icon2 {
    /*width: 30%;*/
    margin: 5%;
}

.icon3 {
    /*width: 10%;*/
    margin: 5% 0;
}

.errLink {
    text-decoration: underline;
    font-weight: bold;
    color: blue;
    font-size: smaller;
}

#content {
    width: 70%;
    height: 92vh;
    overflow-y: scroll;
}

#content-area {
    width: 100%;
    border: none;
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: #d3d3d3;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 1000;
    text-align: center;
    line-height: 45px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease-in-out;
}

    #backToTop::before {
        content: "\2227"; /* Unicode for ∧ */
        font-size: 32px;
        font-weight: 500;
        color: white;
        display: inline-block;
    }

    #backToTop:hover {
        background-color: #b0b0b0;
    }

.lg\:hidden {
    display: none;
}

.lg\:block {
    display: block;
}

.lg\:inline {
    display: inline;
}

@media (max-width: 768px) {

    .main-body {
        overflow: scroll;
    }

    .main-header {
        max-height: 50px;
    }

    .logo {
        display: block;
        text-align: center;
    }

    .mobile-header{
        font-size: 18px;
        margin: 5%;
    }

    .header {
        margin-left: 0;
        color: black;
    }

    .main-container {
        display: block;
        overflow-x: hidden;
    }

    .menu {
        height: auto;
        padding: 10px;
        display: flex;
        flex-direction: column;
        width: 95%;
        justify-content: center;
        overflow-x: hidden;
    }

    .dropdowns {
        /* margin: 2%; */
    }

    #content {
        width: 100%;
        justify-content: center;
        /*overflow-x: scroll;*/
        overflow: initial;
    }

    /*#backToTop {
        display: none;
    }*/

    .sm\:hidden {
        display: none;
    }

    .sm\:block {
        display: block;
    }
}