/* === Topbar "Get Started" (already styled well, no changes needed) === */

#topbarLogin .v-btn#topBarRegisterButton {
  background: transparent !important;
  color: #2b7a78 !important;
  font-weight: 600 !important;
  border: 2px solid #2b7a78 !important;
  border-radius: 999px !important;
  padding: 6px 20px !important; /* was 6px 18px */
  font-size: 14px !important;  /* slightly smaller */
  height: 26px !important;     /* consistent size control */
  line-height: 1 !important;
  box-shadow: none !important;
  transition: all 0.2s ease !important;
  min-width: auto !important;
  vertical-align: middle;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  display:none; /* completely hide the sign up button*/
}


@media (max-width: 767.98px) {
  #topbarLogin #topBarRegisterButton {
    display: none !important;
  }
}

#topbarLogin .v-btn#topBarRegisterButton:hover {
  background-color: rgba(43, 122, 120, 0.08) !important;
  color: #205e5c !important;
  border-color: #205e5c !important;
}




/* === Topbar "Login" - Styled as a subtle link === */
#topBarLoginButton {
  background: none !important;
  border: none !important;
  color: #2b7a78 !important;
  font-weight: 500;
  text-decoration: underline;
  border-radius: 0;
  box-shadow: none;
  padding: 8px 12px;
  transition: color 0.2s ease;
}

#topBarLoginButton:hover {
  color: #205e5c !important;
  text-decoration: none;
}
