


/* Styles for the Personal Page */

.about-me {
  color: #1E90FF; 
}
.hobbies {
  color: #32CD32; 
}
.education {
  color: #FF4500; 
}


ul li.highschool {
  font-style: italic;
}

ul li.collegedegree {
  font-weight: bold;
}

/* Styles for the Class Schedule Page */

table {
  width: 100%;
  border-collapse: collapse;
}
table th,
table td {
  border: 1px solid #000;
  text-align: center;
  padding: 8px;
}
table th {
  background-color: #007BFF; 
  color: #fff;
}

table tbody tr:nth-child(odd) {
  background-color: #f2f2f2;
}


ol.months > li > ol {
  list-style-type: upper-alpha;
}


/* Styles for the Create Account Page */

.custom-radio input[type="radio"],
.custom-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
  border: 2px solid #ccc;
  cursor: pointer;
}


.custom-radio input[type="radio"]:checked {
  background-color: green;
}
.custom-radio input[type="radio"]:not(:checked) {
  background-color: grey;
}


.custom-checkbox input[type="checkbox"]:checked {
  background-color: blue;
}
.custom-checkbox input[type="checkbox"]:not(:checked) {
  background-color: grey;
}


form label {
  display: inline-block;
  margin-bottom: 10px;
}


.checkbox-group {
  display: flex;
  gap: 50px;
}
.checkbox-group div {
  display: flex;
  flex-direction: column;
}


footer {
  margin-top: 20px;
  text-align: center;
}


.profile-photo {
  width: 300px;
  height: auto; 
}
