html {
    font-size: 14px;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    /*margin-bottom: 60px;*/
}


.see-detail-button {
    display: flex;
    width: 100%;
    height: 45px;
    background-color: #ff8b35;
    color: white;
    padding: 14px 20px;
    margin: 8px 0px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: auto;
    font-weight: 600;
    justify-content: center;
    align-items: center;
}


@media (max-width: 850px) {
    .search-result-sub-container {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 450px;
        margin-bottom: 20px;
    }

    .search-result-sub-container-selection {
        width: 100%;
        height: 450px;
        border-radius: 10px;
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease;
        display: none;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .search-result-sub-container-selection-active {
        width: 100%;
        height: 450px;
        border-radius: 10px;
        border: 2px solid green;
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease;
        display: none;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .search-result-container {
        display: flex;
        flex-wrap: wrap;
    }

    .search-result-container-selection {
        display: flex;
        flex-wrap: wrap;
    }
}

@media (min-width: 851px) {
    .search-result-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .search-result-container-selection {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .search-result-sub-container {
        width: 45%;
        border-radius: 10px;
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 450px;
        margin: 2%;
    }

        .search-result-sub-container:hover {
            box-shadow: 1px 7px 11px 1px rgba(0, 0, 0, 0.5);
            transform: scale(1.01);
        }

    .search-result-sub-container-selection {
        width: 45%;
        height: 450px;
        border-radius: 10px;
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease;
        display: none;
        flex-direction: column;
        align-items: center;
        margin: 2%;
    }

        .search-result-sub-container-selection:hover {
            box-shadow: 1px 7px 11px 1px rgba(0, 0, 0, 0.5);
            transform: scale(1.01);
        }

    .search-result-sub-container-selection-active {
        width: 45%;
        height: 450px;
        border-radius: 10px;
        border: 2px solid green;
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease;
        display: none;
        flex-direction: column;
        align-items: center;
        margin: 2%;
    }

        .search-result-sub-container-selection-active:hover {
            box-shadow: 1px 7px 11px 1px rgba(0, 0, 0, 0.5);
            transform: scale(1.01);
        }
}


#global-search-input {
    box-sizing: border-box;
    background-image: url('searchicon.png');
    background-position: 14px 12px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 1px solid #ddd;
}

    #global-search-input:focus {
        outline: 3px solid #ddd;
    }

.general-search-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .general-search-container a:hover {
        background-color: #ddd;
    }

.dropdown-global-search-content {
    display: block;
    position: absolute;
    background-color: #f6f6f6;
    min-width: 230px;
    /*overflow-y: auto;*/
    overflow-x: hidden;
    border: 1px solid #ddd;
    z-index: 1;
    /*max-height: 300px;*/
    width: 100%;
}

.dropdown-global-search-content-span {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    cursor: pointer;
}

.tab-bar-menu {
    color: grey !important;
    font-weight: 600;
    cursor: pointer;
    margin-left: 10px;
    text-decoration: none;
}

.tab-bar-menu-active {
    color: #ff8b35 !important;
    font-weight: 600;
    cursor: pointer;
    margin-left: 10px;
    text-decoration: none;
}


.banner-image {
    position: relative;
    display: inline-block;
    width: 100%;
    opacity: 0.7;
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #ff8b35;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #ff7e1f;
    }

::-webkit-scrollbar.horizontal {
    height: 7px;
}

::-webkit-scrollbar-track.horizontal {
    box-shadow: inset 0 0 5px grey;
    border-radius: 7px;
}

::-webkit-scrollbar-thumb.horizontal {
    background: #ff8b35;
    border-radius: 7px;
}

    ::-webkit-scrollbar-thumb.horizontal:hover {
        background: #ff7e1f;
    }

::-webkit-scrollbar-track.vertical {
    box-shadow: inset 0 0 5px grey;
    border-radius: 7px;
}

::-webkit-scrollbar-thumb.vertical {
    background: #ff8b35;
    border-radius: 7px;
}

    ::-webkit-scrollbar-thumb.vertical:hover {
        background: #ff7e1f;
    }




@media (min-width: 769px) {

    .university-detail-web-container {
        width: 100%;
    }

    .university-detail-mobile-container {
        display: none;
    }

    html {
        font-size: 16px;
    }

    .stable-banner-text {
        position: absolute;
        top: calc(50vh); /*30%;*/
        left: 10%;
        color: white;
        font-size: 50px;
        font-weight: 500;
    }

    #animationText {
        /*animation: slideLeft 0.5s ease;*/
        position: absolute;
        top: 50%;
        left: 230%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 50px;
        font-weight: 500;
        width: 300px;
        text-align: left;
        color: #ff8b35;
    }

    .banner-button {
        position: absolute;
        top: calc(60vh); /*40%;*/
        left: 10%;
        background-color: #ff8b35;
        border-color: #ff8b35;
        color: white;
        height: 50px;
        width: 200px;
        border-radius: 10px;
        border: none;
        transition: transform 0.3s ease;
        font-weight: 700;
    }

        .banner-button:hover {
            transform: scale(1.1);
        }

    #find-my-program-submit {
        transition: transform 0.3s ease;
    }

        #find-my-program-submit:hover {
            transform: scale(1.1);
        }

    #find-my-future-submit {
        transition: transform 0.3s ease;
    }

        #find-my-future-submit:hover {
            transform: scale(1.1);
        }

    #find-my-program-search {
        transition: transform 0.3s ease;
    }

        #find-my-program-search:hover {
            transform: scale(1.03);
        }
}

@media (max-width: 769px) {

    .university-detail-web-container {
        display: none;
    }

    .university-detail-mobile-container {
        width: 100%;
    }


    .stable-banner-text {
        position: absolute;
        top: calc(25vh); /* 20%;*/
        left: 3%;
        color: white;
        font-size: 30px;
        font-weight: 500;
    }


    #animationText {
        /*animation: slideLeft 0.5s ease;*/
        position: absolute;
        top: 50%;
        left: 300%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 30px;
        font-weight: 500;
        width: 300px;
        text-align: left;
        color: #ff8b35;
    }

    .banner-button {
        position: absolute;
        top: 27%;
        left: 5%;
        background-color: #ff8b35;
        border-color: #ff8b35;
        color: white;
        height: 40px;
        width: 100px;
        border-radius: 10px;
        border: none;
        display: none;
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.active-left-selection-tab {
    height: 50px;
    width: 50%;
    border: 2px solid #ff8b35;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: #ff8b35;
    border-color: #ff8b35;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.inactive-left-selection-tab {
    height: 50px;
    width: 50%;
    border: 2px solid #ff8b35;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: white;
    border-color: #ff8b35;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.active-right-selection-tab {
    height: 50px;
    width: 50%;
    border: 1px solid grey;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #ff8b35;
    border-color: #ff8b35;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.inactive-right-selection-tab {
    height: 50px;
    width: 50%;
    border: 1px solid grey;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: white;
    border-color: #ff8b35;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.show-container {
    display: block;
}

.hide-container {
    display: none;
}

@media (min-width: 769px) {

    .active-selection-tab-text {
        font-size: 17px;
        color: white;
        text-align: center;
        font-weight: 400;
    }

    .inactive-selection-tab-text {
        font-size: 17px;
        color: #ff8b35;
        text-align: center;
        font-weight: 400;
    }

    .mobile-web-container {
        display: block;
    }

    .footer-container {
        height: 450px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #34383b;
    }

    .choose-type-container {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: row;
        background-color: white;
        border: 2px solid #ff8b35;
        border-radius: 10px;
        align-items: center;
    }

    .choose-type-container-new {
        width: 30%;
        height: 100%;
        display: flex;
        flex-direction: row;
        background-color: #ff8b35;
        border: 2px solid #ff8b35;
        border-radius: 10px;
        align-items: center;
    }

    .find-university-container {
        position: absolute;
        top: calc(45vh);
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }

    .find-university-header {
        color: #ff8b35;
        font-weight: 600;
    }

    #career-card-button-container {
        display: none;
    }
}

@media (max-width: 768px) {

    .active-selection-tab-text {
        font-size: 13px;
        color: white;
        text-align: center;
        font-weight: 400;
    }

    .inactive-selection-tab-text {
        font-size: 13px;
        color: #ff8b35;
        text-align: center;
        font-weight: 400;
    }

    .mobile-web-container {
        display: none;
    }

    .footer-container {
        height: 250px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #34383b;
    }

    .choose-type-container {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        background-color: white;
        border: 2px solid #ff8b35;
        border-radius: 10px;
        align-items: center;
    }

    .choose-type-container-new {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        background-color: #ff8b35;
        border: 2px solid #ff8b35;
        border-radius: 10px;
        align-items: center;
    }

    .find-university-container {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }

    .find-university-header {
        color: black;
        font-weight: 600;
        margin-top: 15px;
    }

    #career-card-button-container {
        display: flex;
        width: 50%;
    }
}

.active-selection-tab {
    height: 40px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #ff8b35;
    margin: 2px;
    border-radius: 10px;
}

.inactive-selection-tab {
    height: 40px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: white;
    margin: 2px;
    border-radius: 10px;
}

.submit-button {
    display: flex;
    width: 125px;
    background-color: #ff8b35;
    color: white;
    padding: 14px 20px;
    margin: 8px 0px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: auto;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    height: 40px;
}

    .submit-button:hover {
        background-color: #f79c59;
        color: white;
    }


.result-page-li {
    cursor: pointer;
    height: 50px;
    border: 1px solid grey;
    display: flex;
    align-items: center;
    padding-left: 20px;
    margin-bottom: 5px;
    border-radius: 5px;
}

.result-page-li-active {
    cursor: pointer;
    height: 50px;
    border: 1px solid #a3cfbb;
    display: flex;
    align-items: center;
    padding-left: 20px;
    margin-bottom: 5px;
    background-color: #d1e7dd;
    border-radius: 5px;
}

.region {
    margin-bottom: 10px;
}

.state-list {
    list-style-type: none;
}

    .state-list li {
        margin-left: 20px;
    }

.career-card {
    height: 250px;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#career-card-header-container {
    display: flex;
}


.choose-career-button {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%);
    width: 50%;
    border: none;
    background-color: #ff8b35;
    border-radius: 10px;
    height: 40px;
    color: white;
    font-weight: 500;
}

.choose-career-button-mobile {
    border: none;
    background-color: #ff8b35;
    border-radius: 10px;
    height: 40px;
    color: white;
    font-weight: 500;
    width: 100%;
}


.left-column-major {
    flex: 0 0 30%;
    background-color: #e5e5e5;
    overflow-y: auto; /* Enable vertical scrolling when content overflows */
    /* Hide the scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.right-column-major {
    flex: 0 0 70%;
    background-color: #f2f2f2;
    overflow-y: auto; /* Enable vertical scrolling when content overflows */
    /* Hide the scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.left-column-major::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

.card-list-major {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .card-list-major li {
        height: 80px;
        background-color: #fff;
        margin: 15px;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        text-align: center;
        font-weight: 500;
    }

        .card-list-major li.active {
            background-color: #d4edda;
            margin: 10px;
        }

@media (max-width: 768px) {
    .card-list-major li {
        height: 100px;
        background-color: #fff;
        margin: 15px;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        text-align: center;
        font-weight: 500;
        overflow-x: scroll;
        font-size: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}



.sub-card-list-major {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .sub-card-list-major li {
        height: 50px;
        background-color: #fff;
        margin: 15px;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        display: flex;
        align-items: center;
    }

        .sub-card-list-major li.active {
            background-color: #d4edda;
            margin: 10px;
        }

area {
    outline: 2px solid red; /* Change the border style as you like */
    cursor: pointer; /* Change the cursor style to indicate the elements are clickable */
}

.left-column-state {
    flex: 0 0 30%;
    background-color: #e5e5e5;
    overflow-y: auto; /* Enable vertical scrolling when content overflows */
    /* Hide the scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.right-column-state {
    flex: 0 0 70%;
    background-color: #f2f2f2;
    overflow-y: auto; /* Enable vertical scrolling when content overflows */
    /* Hide the scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.left-column-state::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

.card-list-state {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .card-list-state li {
        height: 40px;
        background-color: #fff;
        margin: 15px;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        font-weight: 500;
    }


        .card-list-state li.active {
            background-color: #ff8b35;
            margin: 10px;
        }

@media (max-width: 768px) {
    .card-list-state li {
        height: 80px;
        background-color: #fff;
        margin: 15px;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        text-align: center;
        font-weight: 500;
        overflow-x: scroll;
        font-size: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


.regional-state-container {
    width: 23%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ff8b35;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
}

    .regional-state-container.active {
        border: 2px solid orange;
        border-radius: 10px;
        font-weight: 500;
        color: white;
        background-color: #ff8b35
    }


.regional-selection-container {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 10px;
}


@media (max-width: 768px) {
    .regional-selection-container {
        width: 100%;
        height: 150px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-bottom: 10px;
        flex-direction: column;
    }

    .regional-state-container {
        width: 90%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 2px solid #ff8b35;
        border-radius: 10px;
        font-weight: 500;
        cursor: pointer;
        margin-bottom: 5px;
    }
}



.university-result-list-container {
    height: 150px;
    width: 90%;
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    cursor: pointer;
}

.result-lage-li-container {
    list-style-type: none;
}

.clickeble-list-div:hover .university-result-list-text-container,
.clickeble-list-div:hover .university-result-list-detail-container {
    background-color: #edebeb;
}

.university-result-list-image-container {
    height: 150px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ff8b35;
    border-radius: 10px;
}

.university-result-list-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
}

.university-result-list-detail-container {
    height: 150px;
    width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.university-result-arrow {
    height: 70px;
    width: 70px;
}

.university-result-list-sub-title {
    color: grey;
}

.institution-selection {
    width: 50px;
    height: 100%;
    margin-right: 5px;
    border-radius: 10px;
    background-color: #e8ecf0;
    border: 1px solid grey;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.institution-selection-active {
    width: 50px;
    height: 100%;
    margin-right: 5px;
    border-radius: 10px;
    background-color: #d1e7dd;
    border: 1px solid #a3cfbb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.clickeble-list-div {
    display: flex;
    width: 100%;
}


@media (max-width: 768px) {

    .institution-selection {
        width: 50px;
        height: 100%;
        margin-right: 5px;
        border-radius: 10px;
        background-color: #e8ecf0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
    }

    .institution-selection-active {
        width: 50px;
        height: 100%;
        margin-right: 5px;
        border-radius: 10px;
        background-color: #d1e7dd;
        border: 1px solid #a3cfbb;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
    }

    .university-result-list-container {
        height: 50px;
        width: 100%;
        margin-bottom: 15px;
        display: flex;
        flex-direction: row;
        cursor: pointer;
    }

    .clickeble-list-div:hover .university-result-list-text-container,
    .clickeble-list-div:hover .university-result-list-detail-container {
        background-color: #edebeb;
    }

    .university-result-list-image-container {
        display: none;
        /*height: 50px;
        width: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 2px solid #ff8b35;
        border-radius: 10px;*/
    }

    .university-result-list-detail-container {
        height: 50px;
        width: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .university-result-list-logo {
        height: 45px;
        width: 45px;
    }

    .university-result-arrow {
        height: 25px;
        width: 25px;
    }


    .university-result-list-title {
        font-size: 14px;
    }

    .university-result-list-sub-title {
        font-size: 12px;
        color: grey;
    }
}

.result-page-detail-container {
    display: none;
    width: 100%;
}

.result-page-detail-mobile-container {
    display: none;
    width: 100%;
}

#program-result-table {
    width: 100%;
    border-collapse: collapse;
}

.program-list-tr-active {
    background-color: #d4edda;
}

#program-result-table th, td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

#program-result-table th {
    background-color: #f2f2f2;
}

.program-list-tr:hover {
    background-color: #f5f5f5;
}


#my-students-table {
    width: 100%;
    border-collapse: collapse;
}

    #my-students-table th, td {
        padding: 8px;
        border-bottom: 1px solid #ddd;
    }

    #my-students-table th {
        background-color: #f2f2f2;
    }

    #my-students-table tr:hover {
        background-color: #f5f5f5;
    }


.loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #f79c59;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.student-detail-list-title {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    border: 1px solid grey;
    padding: 8px;
    margin: 10px 0px;
    border-radius: 5px;
}

.student-detail-list-container {
    width: 50%;
    color: black;
    font-weight: 500;
}


.compare-university-table {
    width: max-content;
}

.compare-university-title {
    font-weight: 600;
    color: #f79c59;
}


.compare-university-table td,
.compare-university-table th {
    border: 1px solid #dddddd;
    text-align: center;
    padding: 8px;
    width: 300px;
    word-wrap: break-word;
}

.compare-university-bold-title {
    font-weight: 600;
    width: 100px !important;
    color: black;
}


.button-block {
    display: flex;
    width: 100%;
    height: 45px;
    background-color: #ff8b35;
    color: white;
    padding: 14px 20px;
    margin: 8px 0px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: auto;
    font-weight: 600;
    justify-content: center;
    align-items: center;
}


.table-filter-div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.table-filter-search-input {
    width: 50%;
}

.count-per-table {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.pagination-table {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

#pagination-info-text {
    margin-right: 10px;
    justify-content: center;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .table-filter-div {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .table-filter-search-input {
        width: 100%;
    }

    .count-per-table {
        margin-top: 10px;
        display: flex;
        justify-content: flex-start;
    }

    .pagination-table {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
        flex-direction: column;
    }

    #pagination-info-text {
        margin-right: 10px;
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        justify-content: flex-start;
    }
}


.head-button-tab {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 60px;
    width: 95%;
}

.head-button.tab-mobile {
    display: none;
}

.head-button-container-mobile {
    display: none;
}

.active-tab-container {
    color: #ff8b35;
    font-weight: 700;
    border-bottom: 3px solid #ff8b35;
}

.head-button-container {
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    text-align: center;
}

@media (max-width: 950px) { /*special width, don't use it for others*/

    .head-button-tab {
        display: none;
    }

    .head-button-tab-mobile {
        display: flex;
        overflow-x: scroll;
        align-items: center;
        height: 70px;
        margin: 0px 10px;
    }

    .head-button-container-mobile {
        align-items: center;
        justify-content: center;
        display: flex;
        cursor: pointer;
    }

    .active-tab-container-mobile {
        color: #ff8b35;
        font-weight: 700;
        border-bottom: 3px solid #ff8b35;
    }
}


.university-detail-info-result {
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
    margin: 2%;
    padding: 1%;
    position: relative;
}

@media (max-width: 1250px) { /*special width, don't use it for others*/
    .university-detail-info-result {
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
        margin: 2%;
        padding: 1%;
        position: relative;
        width: 1250px;
    }

    .university-detail-info-container {
        overflow-x: scroll;
    }
}


#career-card-img-container {
    transition: transform 0.3s ease;
    border-radius: 15px;
}

    #career-card-img-container:hover {
        box-shadow: 1px 7px 11px 1px rgba(0, 0, 0, 0.5);
        transform: scale(1.01);
    }


.general-search-textbox-container {
    background-color: white;
    border: 1px solid #ced4da;
    border-radius: 10px;
    height: 42px;
    width: 260px;
    color: #495057;
    text-align: left;
    font-size: 14px;
}

@media (max-width: 768px) {
    .general-search-textbox-container {
        background-color: white;
        border: 1px solid #ced4da;
        border-radius: 10px;
        height: 42px;
        width: 90%;
        color: #495057;
        text-align: left;
        font-size: 14px;
    }
}



.update-institution-button {
    color: white;
    background-color: #FF8B35;
    border-radius: 5px;
    border: none;
    padding: 5px 15px;
    font-weight: 600;
}

    .update-institution-button:hover {
        transform: scale(1.1);
    }


.row-space {
    margin: 20px 0px;
}