/* Minimal custom styles to complement Tailwind utilities.
   Keep component-level tweaks and variables here for maintainability. */

:root {
  --surface: #ffffff;
  --border: #e5e7eb; /* gray-200 */
  --muted: #6b7280;  /* gray-500 */
  --brand: #4f46e5;  /* indigo-600 */
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.status-badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: #f3f4f6; /* gray-100 */
  border: 1px solid var(--border);
  color: #4b5563; /* gray-600 */
  font-size: 0.875rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  cursor: pointer;
}
.btn:hover { background: #f9fafb; }
.btn:active { transform: scale(0.99); }
.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-primary:hover { background: #4338ca; }

.input {
  display: inline-block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
}
.modal-card {
  width: 100%; max-width: 48rem; border: 1px solid var(--border);
  border-radius: 1rem; background: var(--surface);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.locked-badge {
  font-size: 11px;
  color: #92400e; /* amber-700 */
}

