/* F6 — Podsjetnici za rođendane (front, nalog + gost forma). */

.hbb-reminders {
  --hbb-pink: #ff5e8a;
  --hbb-ink: #1f2a44;
  --hbb-muted: #6b7689;
  --hbb-line: #e7ebf3;
  color: var(--hbb-ink);
  font-size: 15px;
  line-height: 1.5;
}

.hbb-rem-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--hbb-line);
  border-radius: 16px;
  padding: 22px 22px 18px;
  box-shadow: 0 8px 28px rgba(20, 40, 80, .06);
}

.hbb-rem-card-title {
  margin: 0 0 6px;
  font-size: 20px;
}

.hbb-rem-intro {
  margin: 0 0 16px;
  color: var(--hbb-muted);
}

.hbb-rem-form {
  margin: 0 0 6px;
}

.hbb-rem-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 12px;
}

.hbb-rem-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 90px;
}

.hbb-rem-field.hbb-rem-grow {
  flex: 1 1 100%;
}

.hbb-rem-field > span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--hbb-muted);
}

.hbb-rem-field input,
.hbb-rem-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--hbb-line);
  border-radius: 10px;
  font-size: 15px;
  background: #fff;
  box-sizing: border-box;
}

.hbb-rem-field input:focus,
.hbb-rem-field select:focus {
  outline: none;
  border-color: var(--hbb-pink);
  box-shadow: 0 0 0 3px rgba(255, 94, 138, .15);
}

.hbb-rem-consent {
  font-size: 12.5px;
  color: var(--hbb-muted);
  margin: -4px 0 12px;
}

.hbb-rem-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hbb-rem-submit.button,
.hbb-rem-submit {
  background: var(--hbb-pink) !important;
  border-color: var(--hbb-pink) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 11px 22px !important;
  font-weight: 700 !important;
  cursor: pointer;
  border: 0;
}

.hbb-rem-submit[disabled] { opacity: .6; cursor: default; }

.hbb-rem-msg { font-size: 14px; font-weight: 600; }
.hbb-rem-msg.hbb-rem-ok { color: #2e7d32; }
.hbb-rem-msg.hbb-rem-err { color: #c0392b; }

.hbb-rem-banner {
  border-radius: 10px;
  padding: 12px 14px;
  margin: 0 0 16px;
  font-weight: 600;
}
.hbb-rem-banner.hbb-rem-ok { background: #e8f6ea; color: #226b28; }
.hbb-rem-banner.hbb-rem-err { background: #fdeaea; color: #a5302a; }

.hbb-rem-list-title {
  margin: 22px 0 10px;
  font-size: 16px;
}

.hbb-rem-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hbb-rem-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--hbb-line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fbfcfe;
}

.hbb-rem-item-main {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.hbb-rem-name { font-size: 15.5px; }
.hbb-rem-date { color: var(--hbb-ink); }
.hbb-rem-extra { font-size: 12.5px; color: var(--hbb-muted); }

.hbb-rem-del {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--hbb-line);
  background: #fff;
  color: var(--hbb-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.hbb-rem-del:hover { background: #fdeaea; color: #c0392b; border-color: #f3c6c6; }

.hbb-rem-empty { color: var(--hbb-muted); }

.hbb-rem-account-link { margin: 14px 0 0; font-size: 14px; }
.hbb-rem-account-link a { color: var(--hbb-pink); text-decoration: none; font-weight: 600; }

@media (max-width: 420px) {
  .hbb-rem-field { min-width: 0; flex: 1 1 30%; }
  .hbb-rem-field.hbb-rem-grow { flex: 1 1 100%; }
}
