/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Dec 02 2025 | 08:40:30 */
/* ====== Auth Button: Compact, Always White Text, Proper Hover ====== */
.btn-auth {
  align-items: center;
}

.btn-auth .auth-button {
color: #ffffff !important;      /* force white text */
}

/* Hover / Focus */
.btn-auth .auth-button:hover,
.btn-auth .auth-button:focus {
  background-color: #0073e6;
  border-color: #0073e6;
}

/* Make sure it's not stretching the header height */
.btn-auth a {
  line-height: normal !important;
  height: auto !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  padding-right:25px!important;
  padding-left:25px!important;
  margin: 0 8px!important;
  text-align: center;
}

/* ====== Mobile and Tablet Menu ====== */
@media (max-width: 1151px) {
  .btn-auth {
    margin: 8px 10px!important;
  }

}
