body {
	background-color: lightgray;
}

/* Personal Page */

#about-me {
	color: red;
}

#hobbies {
	color: blue;
}

#education {
	color: orange;
}

.ul1 {
	font-weight: bold;
}

.ul2 {
	font-weight: bold;
}

.ul3 {
	text-decoration: underline;
}

.ul4 {
	text-decoration: underline;
}

.personal a:hover {
	font-size: 24px;
}

/* Schedule Page */

.coursecat td {
	text-align: center;
}

.coursecat th {
	color: green;
}

.coursecat tr:nth-child(even) {
	background-color: lightblue;
}

.events > li > ol {
	list-style-type: upper-alpha;
}
	
/* Account Page */

input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
	background-color: gray;
	cursor: pointer;
}

input[type="radio"]:checked {
    background-color: green;
}

input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    background-color: gray;
	cursor: pointer;
}

input[type="checkbox"]:checked {
    background-color: blue;
}

/* Payment Page */

#shipping_h2 {
	color: blue;
}

#billing_h2 {
	color: green;
}

#payment_h2 {
	color: red;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 170px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  top: -17px;
  left: 105%;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}