.Footer__visitContainer {
    display: flex;
    justify-content: center;
    padding: 20px 0; /* Adjusts spacing in footer */
}

.Footer__visitButton {
    background-color: #555555; /* Dark grey */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.Footer__visitButton:active,
.Footer__visitButton:hover {
    background-color: #e66a00; /* Orange */
}
.apply-button,
.apply-button:link,
.apply-button:visited {
  display: inline-block;
  padding: 10px 30px;
  background-color: #4f4f4f;  /* Default gray background */
  color: #fff;                /* White text */
  text-decoration: none;
  border-radius: 9999px;      /* Pill shape */
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

/* Hover/Active states */
.apply-button:hover,
.apply-button:active {
  background-color: #e66a00;  /* Orange on hover/active */
  color: #fff;                /* Ensure text stays white */
  text-decoration: none;
}

