/*-- Personal Page styling --*/

/* Section Headers */
.about-me { color: #20d14c; /* Green */ }

.hobbies { color: #a11707; /* Red */ }

.education { color: #301f8f; /* Indigo */ }

/* Unordered list in Education Section */
.high-school { font-style: italic; }

.college-degree { font-weight: bold; }

.certificates { text-decoration: underline; }

/* Hyperlinks */
a.bigger-link:hover { font-size: 150%; }



/*-- Class Schedule styling --*/

/* Schedule Table */
table {
    width: 100%;
    text-align: center;
}

thead{
    font-weight: bold;
    background-color: #21e128;
    color: white;
}

tr:nth-child(even) { background-color: #dad2cc; }

/* Events List */
.primary-list { list-style-type: decimal; }

.secondary-list { list-style-type: upper-alpha; }



/*-- Create Account styling --*/

/* Custom Radio Button Settings */
/* Hide the default radio button */
.radio-button {
    display: none;
}

/* Style for the custom radio button */
.major label {
    position: relative;
    padding-left: 30px; /* Space for the custom radio button */
    cursor: pointer;
    font-size: 18px;
    display: inline-block;
}

/* Custom radio button */
.major label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: grey; /* Default background color */
    transition: background-color 0.3s, border 0.3s;
}

/* Change color when radio button is selected */
.radio-button:checked + label::before {
    background-color: green; /* Background color when selected */
}

/* Optional: Change label color when selected */
.radio-button:checked + label {
    color: #000000;
}

/* Optional: Styling for links */
.major label a {
    color: inherit;
    text-decoration: none;
}

/* Custom CheckBox Settings */
/* Hide default checkboxes */
.checkmark1 {
    display: none;
}

/* Style for the custom checkboxes */
.Programming-Experience label {
    position: relative;
    padding-left: 30px; /* Space for the custom checkbox */
    cursor: pointer;
    font-size: 18px;
    display: inline-flex; /* Use inline-flex for vertical alignment */
    align-items: center; /* Vertically align the checkbox and label */
    margin-bottom: 5px; /* Reduced margin to bring checkboxes closer together */
}

/* Custom checkbox style */
.Programming-Experience label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ccc; /* Default border color */
    background-color: white;
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s, border-color 0.3s;
}

/* Change background when checkbox is selected */
.checkmark1:checked + label::before {
    background-color: blue; /* Background color when selected */
    border-color: green; /* Change border color to match */
}

/* Change label text color when checkbox is selected */
.checkmark1:checked + label {
    color: #000000; /* Text color changed to black for visibility */
}

/* Optional: Style for the links in the labels */
.Programming-Experience label a {
    color: inherit;
    text-decoration: none;
}

/* Style for the columns */
.row {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping in the columns */
    justify-content: space-between;
    gap: 20px; /* Added gap between columns */
}

.column {
    width: 48%; /* Adjust width to fit two columns */
    display: flex;
    flex-direction: column; /* Align checkboxes vertically in each column */
}

/* Add spacing between the columns */
.column div {
    margin-bottom: 5px; /* Reduced margin between checkboxes */
}


/*-- ePortfolio styling --*/
h1 { text-align: center; }
.column {
    float: left;
    width: 30%;
    padding: 5px;
}

/* Clear floats after image containers */
.row::after {
    content: "";
    clear: both;
    display: table;
}

.column1 {
    float: left;
    width: 50%;
    padding: 5px;
    box-sizing: border-box;
}
  
/* Clear floats after image containers */
.row1::after {
    content: "";
    clear: both;
    display: flex;
}



