:root {
  --hlb-red: #db2325;
  --hlb-red-dark: #b81b1d;
}

body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #f4f6f8;
  color: #1f2937;
}

.hlb-brand-bg { background: var(--hlb-red); }
.hlb-brand-text { color: var(--hlb-red); }
.hlb-brand-border { border-color: var(--hlb-red); }
.hlb-brand-bg:hover { background: var(--hlb-red-dark); }

.status-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1rem;
}
.modal-backdrop[hidden] { display: none; }

.modal-card {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  overflow: hidden;
}

input:focus, button:focus, select:focus, textarea:focus {
  outline: 2px solid var(--hlb-red);
  outline-offset: 2px;
}
