/* Filters */
.filter-container, .filter-search-container{
    display: flex;
    flex-direction: row;
}

.filter-container{
    gap: 5px;
    margin-top: 5px;
}

.filter-search-container{
    width: 100%;
    justify-content: space-between;
}

#college-search{
    border-radius: 50px;
}

#form-select{
    width: fit-content;
}

/* college card */
.college-list-container{
    margin-top: 30px;
}

.college-card{
    background-color: white;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.10);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    height: 308px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

/* college card top section */
.college-card-top{
    height: 186px;
    position: relative;
}

.college-name-date{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    padding: 10px;
    top: 0;
    background-color: rgba(0, 0, 0, 0.40);
    color: white;
    align-items: flex-start;
}

.college-cover-photo{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.college-card-name{
    font-size: 20px;
    font-weight: bold;
}

.date-joined{
    font-size: 12px;
    font-weight: 200;
    padding-top: 5px;
}

/* college card bottom section */
.college-card-bottom{
    display: flex;
    flex-direction: column;
    padding: 10px;
    height: 100%;
    justify-content: space-between;
}

.college-location-details{
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 300;
    padding-left: 150px;
    text-align: center;
}

.college-stats{
    display: flex;
    justify-content: space-between;
}

.stats{
    text-align: center;
    font-weight: bold;
    font-size: 40px;
    line-height: 1;
}

.stats > span{
    font-size: 14px;
    font-weight: normal;
}

/* logo box positioning */
.college-logo{
    position: absolute;
    width: 125px;
    height: 125px;
    border-radius: 5px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.10);
    top: 100px;
    left: 20px;
    background-color: white;
    border: 1px solid #6F62FC;
}