/* Minimal CSS for CS 340 Step 3 Draft */
/* Reset and basic styling */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    line-height: 1.6;
}

/* Headers */
h1, h2, h3 {
    margin-bottom: 10px;
}

/* Tables - make them more readable */
table {
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f0f0f0;
}

/* Forms - basic spacing */
form {
    margin: 20px 0;
}

label {
    display: block;
    margin-top: 10px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="datetime-local"],
select {
    margin-bottom: 10px;
}

button {
    margin-right: 10px;
}

/* Links */
a {
    margin: 0 5px;
}

/* Footer */
footer {
    margin-top: 40px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
}

.member-row:hover {
  background-color: #eef;
}

.course-details td {
  padding: 10px;
  border-top: 1px solid #ccc;
}