.results {
    font-family: 'Times New Roman', Times, serif;
}

html, body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
    overflow-x: hidden;
    height: 100%;
    min-height: 100%
}

header {
    background-color: #ffffff; 
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 100;
    position: fixed;
    top: 0;
    width: 100%;
}

#site-footer {
    background-color: #ffffff; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 100;
    width: 100%;
}

#results-footer {
    background-color: #ffffff; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 100;
    width: 100%;
    position: absolute;
    margin-top: auto;
    bottom: 0;
}

.git-logo {
    width: auto;
    height: 28px;
}

.wrapped-content {
    z-index: 0;
}

#home-wrapped-content {
    background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url('/static/background.jpg');
    background-position: -230px -80px;
    margin-top: 60px;
    height: 92vh;
}

#navigation {
    z-index: 1;
}

.logo {
    text-decoration: none;
    color: black
}

.custom-modal {
    color: black
}

.signup-container-button {
    align-content: center;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
}

.title-container {
    width: 100%;
    height: 50vh;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.title-container h1 {
    font-size: 100px;
    font-weight: 600px;
    text-align: center;
    line-height: 1.1;
    background-color: white;
    padding: 10px 20px; 
    border-radius: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
}

.search-container h3 {
    text-align: center;
    vertical-align: middle;
    line-height: 5vh;
}

.centered-container {
    margin-top: 10vh;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.form-control {
    border-bottom-left-radius: 30%;
    border-top-left-radius: 30%;
}

#home-search-container {
    height: 35vh;
    margin: auto;
    width: 50%;
    padding: 25px;
}

#school-search-container {
    height: 10vh;
    margin: auto;
    width: 50%;
    padding: 25px;
}

@media (max-width: 768px) {
    #home-search-container {
        width: auto;
    }
    #school-search-container {
        width: 100%;
    }
    .title-container {
        width: 75%;
    }
    .title-container h1 {
        margin:auto;
    }
}

#search-function {
    margin: auto;
}

.ui-menu {
    list-style-type: none;
    padding: 0; 
    margin: 0;
    width: 200px;
    height: 150px;
    overflow: auto; 
    border: 1px solid #ccc;
    background: white;
}

.ui-helper-hidden-accessible {
    display: none;
}

.ui-autocomplete .ui-menu-item-wrapper {
    padding: 5px 10px;
}

.ui-autocomplete .ui-menu-item-wrapper:hover {
    background-color: #3B71CA;
    cursor: pointer; 
}

.autocomplete-load-more {
    border: none;
    padding: 5px 10px;
    text-decoration: underline;
    cursor: pointer; 
    background-color: white;
    margin: 0;
    position: absolute;
    right: 0;
}

.autocomplete-load-more:hover {
    text-decoration: underline;
    text-decoration-color: #3B71CA;
    color:#3B71CA;
}

input[type='search']::-webkit-search-cancel-button {
    filter: grayscale(1);
  }

.search-wrapper {
    width: 100%;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.school-header {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0)), url('/static/background2.jpg');
    background-position: center 55%; 
    color: white;
}

.results-container {
    animation: fade-up 1.5s;
}

@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

.result-header {
    margin-top: 30px;
}

.delete-button {
    border: 0;
    background: none;
    margin-left: 5px;
}

.select-container {
    border-bottom-left-radius: 0%;
    border-top-left-radius: 0%;
}

option {
    position: inherit;
}

.form-container {
    width: 100%; 
    overflow: hidden;
}

.form-outline .form-select {
    width: auto; 
}

#courseList {
    list-style-type: none;
    padding: 0; 
    margin: 0;
    width: fit-content;
    margin-bottom: 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.list-item-container {
    list-style-type: none;
    display: flex;
    padding: 0; 
    margin: 0;
    flex: 0 0 auto;
    flex-direction: row;
    box-sizing: border-box;
    transition: transform .15s;
}

.list-item-container:hover {
    transform: scale(1.05);
}

.course-list-item {
    margin-left: 8px;
}

.course-list-container {
    list-style-type: none;
    padding: 0; 
    margin: 0;
    width: auto;
    height: 100px;
    overflow: auto; 
    border: 1px solid #ccc;
    background: white;
}

.result-card {
    transform: transformation .8s;
    height: 240px;
}

.result-card:hover {
    transform: scale(1.03)
}

.csv-download {
    background-color: #3B71CA;
    border: none;
    color: white;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 20px;
    text-decoration: none;
}

.csv-download:hover {
    background-color: #162d52;
}

.step-one-container {
    width: 60%;
    display: inline-block;
}

.temp-user-container {
    display: flex;
    align-items: flex-start;
    height: auto;
}

.temp-user-container img {
    margin-left: 20px;
    transform: scale(0.3);
}

.temp-user-container-results {
    display: flex;
    align-items: flex-start;
    animation: fade-up 3s;
}

.step-three-container {
    width: 60%;
    margin-right: 20px; 
}

.graduation-image {
    transform: scale(0.8);
    margin-left: auto;
}


.card-container {
    margin-top: 5vh;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-right-radius: 0px;
}

.card-body {
    height: 100%;
}

.card-home {
    height: 100%;
}

.img-attribute {
    text-align: right;
}

.spacer {
    height: 50px;
}

.about-container {
    margin-left: 50px;
    margin-top: 20vh;
}

.question-container {
    margin-left: 50px;
}

.step-1-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75%;
}

.step-1-img {
    max-width: 100%;
    max-height: 100%;
}