/* === Dash icons === */
/*
User profile icon dashicons-admin-users
*/
.user-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.user-label .dashicons {
  color: #fff;
  font-size: 18px;
}


/* Usage
<span class="user-icon">
  <span class="dashicons dashicons-admin-users"></span>
</span>
*/

/*
Home icon dashicons-admin-home
*/


.nav-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.nav-label .dashicons {
  color: #fff;          /* white icon */
  background: none;     /* transparent */
  font-size: 18px;
  line-height: 1;
}

/* Usage
<span class="nav-icon">
  <span class="dashicons dashicons-admin-home"></span>
</span>
*/  

/* === TFG Button Styles === */
/*
Buttons
Example use:  <button class="tfg-button">Subscribe</button>
*/

.tfg-button {
  display: inline-block;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 7px 10px;
  color: #ffffff;
  background-color: #0E94FF;
  border: 1px solid #ffffff;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
  min-height: 38px;  /* Consistent button height */
  line-height: 24px;  /* Vertical centering */
}

.tfg-button:hover {
  background-color: #295CFF;
  border-color: #ffffff;
  color: #ffffff;
}

.tfg-button-transparent {
  display: inline-block;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 7px 10px;
  color: #000000;
  border: 1px solid #ffffff;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
}

.tfg-button-transparent:hover {
  background-color: #295CFF;
  border-color: #ffffff;
  color: #ffffff;
}

/*
Disabled Version
Use: <button class="tfg-button tfg-button--disabled">Disabled</button>
*/
.tfg-button:disabled,
.tfg-button[disabled] {
  background-color: #cccccc;
  border-color: #ffffff;
  color: #ffffff;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.7;
}


/*
Focused Version
Use: <button class="tfg-button tfg-button--disabled">Disabled</button>
Stays consistent with your design but adds a visible indicator when the
button is focused (e.g. tabbed to with a keyboard)

Safari doesn’t support :focus-visible well yet, so include :focus as a fallback.
*/

.tfg-button:focus,
.tfg-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 148, 255, 0.5); /* blue glow ring */
}

/*
Focused (Safari fallback)
*/




/*
Why Use an Outline Button?
To indicate a secondary or less prominent action
To offer visual contrast against a solid primary button
To blend well with light/dark backgrounds

Use:  <button class="tfg-button--outline">Learn More</button>
    <button class="tfg-button tfg-button--outline">Learn More</button>
*/

.tfg-button--outline {
  display: inline-block;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 7px 10px;
  color: #0E94FF;
  background-color: transparent;
  border: 1px solid #0E94FF;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
}

.tfg-button--outline:hover {
  background-color: #295CFF;
  border-color: #295CFF;
  color: #ffffff;
}

/*
Return/Back Button
Matches tfg-button default style for consistent appearance
Use: <a href="#" class="tfg-return-button">← Return to Dashboard</a>
*/
.tfg-return-button {
  display: inline-block;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 7px 10px;
  color: #ffffff;
  background-color: #0E94FF;
  border: 1px solid #ffffff;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
  min-height: 38px;  /* Match button height */
  line-height: 24px;  /* Vertical centering */
}

.tfg-return-button:hover {
  background-color: #295CFF;  /* Same darker blue as tfg-button */
  border-color: #ffffff;
  color: #ffffff;
}

/* Wrapper for right-aligned return buttons */
.tfg-return-button-wrapper {
  margin-top: 1em;
  text-align: right;
}

