*{
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    
}

body{
    background-color: #E7F0FF;
}

#navbar{
    display: flex;
    justify-content: space-around;
    padding: 30px 0px 30px 0px;
    height: 35px;

}

.navlist{
    display: flex;
    list-style: none;
    gap: 40px;
    font-size: 17px;
    margin-top: 5px;
    
}

.navlist li:hover{
    text-decoration: underline;
}

.navlist2 li:hover{
    text-decoration: underline;
}

.navlist2{
    display: flex;
    list-style: none;
    gap: 40px;
    font-size: 17px;
}

.navlist2 li{
    margin-top: 5px;
}

.title{
    display: flex;
}

.logo{
    width: 28px;
    height: 28px;
    margin: 3px 3px 3px 3px;
}

#loginbtn{
    font-size: 17px;
    border: none;
    height: 35px;
    width: 65px;
    border-radius: 4px;
    background-color:#4183e6;
    cursor: pointer;
}

.content{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

a{
    text-decoration: none;
    color: black;
}

.linebreak{
    width: 100vw;
    height: 2px;
    background-color: gray;
    box-shadow: 0 4px 8px rgba(0, 0, 0,0.3);
}

#search-bar{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

#search-bar input{
    height: 42px;
    width: 500px;
    padding-left: 10px;
    border-radius: 5px;
    background-color: white;
    border:none;
    margin-right: 5px;
    outline: none;
    box-shadow: 2px 4px 8px grey;
}

#search-bar input::placeholder{
    color: grey;
    font-size: 15px;
}



#searchbtn{
    height: 43px;
    width: 110px;
    border-radius: 5px;
    background-color:#4183e6;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding:3px;
    margin-left: 5px;
}

.btn:hover{
    color: white;
}

#bgimg{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;

}

.college-results{
    position: relative;
    left: 246px;
    top: 40px;
    width: 1000px;
    height: 236px;
    /* background-color: white; */
    overflow: auto;
    border-radius: 2px;
    padding-left: 5px;
}

.overlay{
    position: fixed;
    transition: 1ms;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0,0.5);
    top: 0;
    z-index: -1;
    opacity: 0;
}

.showoverlay{
    opacity: 1;
    z-index: 1;
}

.form{
    position: absolute;
    background-color: #598ddc;
    width: 400px;
    height: 330px;
    padding: 50px 40px;
    left: 50%;
    top: -50%;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 15px 3px black;
    transition: 1s;
    z-index: 5;
}

.showform{
    top: 50%;
}

.form-input{
    width: 100%;
    margin-top: 5px;
    margin-bottom: 25px;
    height: 38px;
    border-radius: 5px;
    padding-left: 5px;
    border: none;
    outline: none;
    
}

.form form h3{
    color: white;
    text-align: center;
    font-size: 26px;
    margin-bottom: 25px;
}

.form-btn{
    margin-top: 20px;
    width: 110px;
    height: 40px;
    background-color: #E7F0FF;
    color: black;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 148px;
}

.form-btn:hover{
    transform: scale(1.1);
}

label{
    font-weight: 500;
}

span{
    position: fixed;
    top: 0%;
    right: 0%;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: normal;
    background-color: white;
    font-weight: 900;
    opacity: 0.75;
    cursor: pointer;
    
}

span:hover{
    scale: 1.1;
}


.college-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.college-table th,
.college-table td {
    border: 1px solid #ccc;
    padding: 10px;
}

.toast-box{
    position: absolute;
    right: 50px;
    bottom: 50px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.toast{
    width: 250px;
    height: 50px;
    color: white;
    background-color: #4BB543;
    font-weight: 500;
    margin:5px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 0 5px;
    position: relative;
    transform: translateX(100%);
    animation: moveleft 0.5s linear forwards;

}

@keyframes moveleft {
    100%{
        transform: translateX(0);
    }
}

.toast-close{
    position: absolute;
    right: 6px;
    cursor: pointer;
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.toast::after{
    content:"";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: white;
    animation: anim 4s linear forwards;
}

@keyframes anim {
    100%{
        width: 0;
    }
}

/* Toast Container
.toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #4BB543;
  color: white;
  padding: 14px 16px;
  border-radius: 6px;
  width: 300px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  font-family: Arial, sans-serif;
}

 Checkmark Icon 
.toast-icon {
  font-size: 18px;
  margin-right: 10px;
}

 Message Text 
.toast-message {
  flex: 1;
  font-weight: bold;
}

 Close Button 
.toast-close {
  cursor: pointer;
  font-size: 18px;
  margin-left: 10px;
}

 Progress Bar 
.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: #ffffffaa;
  width: 100%;
  animation: toastProgress 4s linear forwards;
}

@keyframes toastProgress {
  from { width: 100%; }
  to { width: 0%; }
} */

