/* ---------------------------
   Shared button styles
---------------------------- */

.btn-primary {
  background-color: #2563eb; /* blue-600 */
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.25);
  transition: background-color 0.15s ease, transform 0.1s ease,
    box-shadow 0.15s ease, opacity 0.1s ease;
}

.btn-primary:hover:not(:disabled) {
  background-color: #1d4ed8; /* blue-700 */
  transform: translateY(-1px);
  box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.35);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

/* Secondary button – e.g. Apply / Filter */
.btn-secondary {
  background-color: #0f172a; /* slate-900 */
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.45rem 1.1rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.btn-secondary:hover:not(:disabled) {
  background-color: #020617; /* slate-950 */
  transform: translateY(-1px);
}

/* Ghost / subtle button – e.g. Reset */
.btn-ghost {
  background-color: transparent;
  color: #64748b; /* slate-500 */
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0; /* slate-200 */
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease,
    border-color 0.15s ease;
}

.btn-ghost:hover:not(:disabled) {
  background-color: #f1f5f9; /* slate-100 */
  color: #0f172a; /* slate-900 */
  border-color: #cbd5f5;
}
