.center-button {
    display: flex;
    justify-content: center;
    align-items: center; 
}

.buttonLink {
background-color: #660000;
border: none;
color: white;
padding: 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
cursor: pointer;
margin: 0px;
border-radius: 5px;
}

.people_text {
		font-size: 18px;
		font-family: serif;
}
/* custom CSS by nour, for the custom course dynamic fetcher viewed on our OverView page, don't change unless instructed, or know what you're doing*/ 
.course-fetcher-container {
    text-align: center;
    margin: 20px 0;
}

.load-courses-button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.load-courses-button:hover {
    background-color: #005a87;
}

.course-filters {
    margin: 20px 0;
    display: none; /* Initially hidden */
}

.course-filters button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
}

.course-filters button:hover {
    background-color: #005a87;
}

.course-list {
    margin: 20px 0;
    text-align: left; /* Ensure text is left-aligned */
}

.course-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.course-code {
    font-size: 18px;
    color: #800000;
}

.course-title {
    font-size: 16px;
    color: #0073aa;
}

.course-title a {
    text-decoration: none;
    color: inherit;
}

.course-title a:hover {
    text-decoration: underline;
}

.course-program, .course-description {
    font-size: 14px;
    color: #555;
}