#departments {
    max-width: 710px;
    margin: 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;

    border: 0px solid #ccc;
    justify-content: center;
    align-items: top;
	margin-bottom:10px;
}




.departments-loading {
    display: flex;
    justify-content: left;
    align-items: left;
    height: 80px;
    width:300px;
    border:1px solid #ccc;

}

.departments-loading:after {
    content: "Loading...";
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #333;
    margin-left: 10px;
}

.department-column {
    flex: 1;
    min-width: 300px;
}

.department {
    padding: 10px;
    margin: 5px 0;
    background-color: #eee;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
    max-width:290px;
    color:#006747;

    
}



.department:hover {
    background-color: #e0e0e0;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    #departments {
        flex-direction: column;
    }
    
    .department-column {
        width: 100%;
    }
}

/* Add any additional styles here */

.office-hours {
    font-family:monospace;
    font-size: 18px;
}

.hours-day {
    font-weight: bold;
}

.card-left {
    min-width:300px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 18px;
}

.card-left a {
    color: #006747;
    font-weight:600;
}

#results {
    max-width: 710px;
    margin: 10px 0;
    padding: 0 20px;
    border: 0px solid #ccc;
   
}

#results h2 {
    font-family: Arial, sans-serif;
    color: red;
    margin-bottom: 10px;
	font-size:20px;
	font-weight:bold;
}


.faculty-card {
    background-color: #fff;
    border-radius: 4px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display:flex;
    flex-direction: row;
	flex-wrap:wrap;
    font-family: Arial, sans-serif;
    max-width:640px;
}

.faculty-card h3 {
    margin: 0 0 5px 0;
    color: #333;
    font-family: Arial, sans-serif;
}

.faculty-card .department {
    color: #666;
    margin: 5px 0;
    font-style: italic;
}

.faculty-card .office-hours {
    margin: 5px 0;
    color: #444;
}



.search-container {
    max-width: 710px;
    margin: 0 0;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
	flex-wrap:wrap;
    gap: 10px;
    align-items: center;
}

#search {
    display: block;
    margin: 0 0;
	margin-bottom:8px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}



#clear-utility {
    display: none;
  
    padding: 8px 12px;
      cursor: pointer;
    font-size: 18px;
    font-family: Arial, sans-serif;
    line-height: 2.5;
}


.how-to {
    max-width: 710px;
    margin: 0 0;
	
    padding: 0 20px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    border: 0px solid #ccc;
}

