.frp-btn, .frp-btn-danger, .frp-btn-secondary, .frp-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 5px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.frp-btn:focus, .frp-btn-danger:focus, .frp-btn-secondary:focus, .frp-btn-primary:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.frp-btn:disabled, .frp-btn-danger:disabled, .frp-btn-secondary:disabled, .frp-btn-primary:disabled, .frp-btn.disabled, .disabled.frp-btn-danger, .disabled.frp-btn-secondary, .disabled.frp-btn-primary {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.frp-btn-primary {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #fff;
}
.frp-btn-primary:hover, .frp-btn-primary:focus {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
  text-decoration: none;
}

.frp-btn-secondary {
  background-color: #fff;
  border-color: #d1d5db;
  color: #374151;
}
.frp-btn-secondary:hover, .frp-btn-secondary:focus {
  background-color: #f3f4f6;
  border-color: #9ca3af;
  color: #111827;
  text-decoration: none;
}

.frp-btn-danger {
  background-color: #dc2626;
  border-color: #dc2626;
  color: #fff;
}
.frp-btn-danger:hover, .frp-btn-danger:focus {
  background-color: #b91c1c;
  border-color: #b91c1c;
  color: #fff;
  text-decoration: none;
}
