/* Base Button */
.otw-auth-action {
  display: inline-flex;
  align-items: center;
  transition: background-color 0.2s;
  border-radius: 4px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

/* 1. STATE: UNLINKED (Action Required) */
.otw-state-warning {
  background-color: #fd7e14;
  /* Orange */
  color: #fff !important;
}

.otw-state-warning:hover {
  background-color: #e36d0d;
}

/* 2. STATE: SUBSCRIBER (Golden) */
.otw-state-subscriber {
  background-color: #d4edda;
  /* Light Green */
  color: #155724 !important;
}

/* 3. STATE: FREE / EXPIRED */
.otw-state-free,
.otw-state-expired {
  background-color: #007bff;
  /* Blue */
  color: #fff !important;
}

/* 4. STATE: GUEST */
.otw-state-guest {
  border: 1px solid #ccc;
  background-color: transparent;
  color: #333 !important;
}

.otw-state-guest:hover {
  background-color: #f8f9fa;
}

/* Meta Text (Subscriber ID) */
.otw-auth-meta {
  opacity: 0.8;
  margin-left: 6px;
  font-weight: normal;
  font-size: 0.85em;
}