/*-- Personal Page styling --*/

/* Section Headers */
.about-me { color: #20d14c;}
.hobbies { color: #a11707;}
.education { color: #301f8f;}
.shippingInfo { color: #0066cc;}
.billingInfo { color: #1dc85f;}
.paymentInfo { color: #bfce1f;}

/* 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;
}




/* 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;
}

.material-icons{font-size:24px;} 

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
  
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }





body {
            font-family: Arial, sans-serif;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            
            text-align: center;
        }
        h2 {
            color: #0066cc;
            border-bottom: 1px solid #ccc;
            padding-bottom: 5px;
        }
        .form-input {
            margin-bottom: 15px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        input, select {
            width: 100%;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }
        .checkbox-container {
            margin: 15px 0;
        }
        .checkbox-container input {
            width: auto;
            margin-right: 10px;
        }
        .creditCardImages {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
        }
        .creditCardImages img {
            height: 30px;
        }
        .buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        .buttons input {
            width: auto;
        }
        footer {
            margin-top: 30px;
            text-align: center;
        }