/*Personal Web Page Styles */

/* Unique colors for each section header */
.personal-about {
    color: #2a9d8f;  /* Teal */
}
.personal-hobbies {
    color: #e76f51;  /* Coral */
}
.personal-education {
    color: #264653;  /* Dark Blue */
}

/* Format the Education unordered list based on the education type */
.college {
    font-weight: bold;
}
.highschool {
    font-style: italic;
}
.certificate {
    text-decoration: underline;
}

/* Hover effect: Increase hyperlink text size by 150% for everything cause it looks cool */
body a:hover {
    font-size: 150%;
}

/* Class Schedule Page Styles */

/* Table styling: full width, text, and borders */
table {
    width: 100%;
    border-collapse: collapse;
}
table th, table td {
    border: 1px solid #ccc;
    text-align: center;
    padding: 8px;
}

/* Header row with a primary color (royal blue) */
table th {
    background-color: royalblue;
    color: white;
}

/* Stripe every other data row */
table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Ordered list for Important Events:
   -Primary level: Arabic numbers
    Secondary level: Uppercase letters */
ol li ol {
    list-style-type: upper-alpha;
}

/* Create Account Page */

/* Custom radio buttons */
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: grey;
    border: 2px solid #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: middle;
    cursor: pointer;
}
input[type="radio"]:checked {
    background-color: green;
}

/* Custom checkboxes */
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: grey;
    border: 2px solid #000;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: middle;
    cursor: pointer;
}
input[type="checkbox"]:checked {
    background-color: blue;
}

/* Layout two columns */
.checkbox-container {
    display: flex;
}
.checkbox-column {
    flex: 1;
}
