/* Shared button styles used by both admin and sales applications */
.btn.btn-shared {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #1d4ed8;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.btn-shared:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.25);
  background: #1e40af;
}

.btn.btn-shared:disabled,
.btn.btn-shared[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.65;
  box-shadow: none;
  transform: none;
}

.btn.btn-shared.btn-shared--secondary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  box-shadow: none;
}

.btn.btn-shared.btn-shared--secondary:hover {
  background: #e2e8f0;
  box-shadow: none;
}
