/*Css for personal*/
.personal-page h2.about {
    color: #2e6f40; 
}

.personal-page h2.hobbies {
    color: #694c45; 
}

.personal-page h2.education {
    color: #1A4A96;
}

.personal-page section ul li.college-degree {
    font-weight: bold;
}

.personal-page section ul li.certificate {
    text-decoration: underline;
}

.personal-page a {
    font-size: 100%;
    transition: font-size 0.2s ease-in-out;
}

.personal-page a:hover {
    font-size: 150%;
}

/*css for schedule*/
table th,
table td {
  text-align: center;
}

/*table color*/
table thead tr {
  background-color: #2e6f40; /* Primary blue */
  color: white;
}

/* stripe the table*/
table tbody tr:nth-child(odd) {
  background-color: #b9f19f;
}

ol {
  list-style-type: decimal;
}

ol ol {
  list-style-type: upper-alpha;
}

/*Css for account*/
/*radio buttons*/
input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background: grey;
    cursor: pointer;
    margin-right: 8px;
  }
  
  input[type="radio"]:checked {
    background: #2e6f40;
  }
  
 /*checked boxes*/
  input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    background: grey;
    cursor: pointer;
    margin-right: 8px;
  }
  
  input[type="checkbox"]:checked {
    background: #1A4A96;
  }

/*payment css*/
.payment-page h2.shipping-info {
  color: #11694f;
}

.payment-page h2.billing-info {
  color: #185c83;
}

.payment-page h2.payment-method {
  color: #5f135e;
}

/* tooltips for payment cvv */
.tooltip {
  position: relative; /* Needed to position the tooltip text relative to this container */
  display: inline-block; /* Keeps the container inline with text */
  cursor: pointer;
}

.tooltip .tooltiptext {
  position: absolute;
  bottom: 125%;      /* Position above the container */
  left: 50%;
  transform: translateX(-50%); /* Centers the tooltip text horizontally */
  visibility: hidden;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  width: 220px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
  