/* General styles for the entire page */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    padding-bottom: 50px;
    padding-top: 50px;
    
}

header {
    background-color: white;
    color: black;
    padding: 20px;
    text-align: center;
}

h1 {
    margin-bottom: 10px;
}

.container {
    width: 80%;
    margin: 20px auto;
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow-x: auto; /* For tables that might be too wide */
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}


/* Styles specific to the course list page */
.course {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.course h2 {
    color: #E46C0A;
    margin-top: 0;
}

.course p {
    margin-bottom: 10px;
}

.courselist a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #E46C0A;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.courselist a:hover {
    background-color: #d15700;
}


/* Styles specific to the table page */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #E46C0A;
    color: white;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

ul { /* Style for lists within table cells */
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}