/**
 * Biotiki Core — стили общих компонентов ядра (модалка соц.-дем.).
 * Светлый вид test2: бренд-зелёный #6BCB77, мягкая подложка #D8F2D7.
 */

.bc-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  background: rgba(0, 0, 0, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: Manrope, Arial, sans-serif;
}

.bc-modal {
  background: #fff;
  border-radius: 14px;
  max-width: 440px;
  width: 100%;
  padding: 24px 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
}

.bc-modal-title {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.25;
  color: #111;
  text-align: center;
}

.bc-field { margin-bottom: 18px; }

.bc-label {
  font-size: 14px;
  font-weight: 700;
  color: #313131;
  margin-bottom: 8px;
}

.bc-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bc-choice {
  flex: 1 1 auto;
  min-width: 72px;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f8f8f8;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .12s, border-color .12s;
}

.bc-choice:hover { background: #D8F2D7; }

.bc-choice.is-active {
  background: #6BCB77;
  border-color: #6BCB77;
  color: #000;
}

.bc-btn-primary {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background: #6BCB77;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.bc-btn-primary:disabled {
  background: #cfe9d1;
  color: #6b806e;
  cursor: not-allowed;
}

.bc-btn-primary:not(:disabled):hover { filter: brightness(.96); }
