/* 서울W내과 Smart Total Portal - 공통 스타일
   참고 프로토타입(patient.html / doctor.html)의 디자인 언어를 기준으로 통일:
   Tailwind CDN(레이아웃/유틸리티) + 이 파일(커스텀 컴포넌트: select-btn, body map, 애니메이션 등) */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1e3a8a;
  --color-danger: #e11d48;
  --color-danger-light: #fff1f2;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background-color: #f8fafc;
  color: #1e293b;
  font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

.page-wrap {
  max-width: 30rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 6rem;
  background: #ffffff;
  min-height: 100dvh;
  box-shadow: 0 0 0 1px #f1f5f9;
}
.page-wrap--wide { max-width: 100%; padding: 1.25rem; background: transparent; box-shadow: none; }

/* ---------- Header ---------- */
.track-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.track-header__brand { display: flex; flex-direction: column; gap: 4px; }
.track-header__back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  color: #94a3b8;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 2px;
}
.track-header__back:hover { color: var(--color-primary); }
.track-header__clinic {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: #eff6ff;
  color: #1d4ed8;
  border: 2px solid #bfdbfe;
  border-radius: 12px;
  padding: 6px 12px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.track-header__title { font-size: 19px; font-weight: 800; color: #1e293b; margin-top: 2px; }

.lang-toggle {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: #fff;
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 800;
  font-size: 12.5px;
  cursor: pointer;
  white-space: nowrap;
}
.lang-toggle:active { transform: scale(0.96); }

/* ---------- Cards / Sections ---------- */
.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  padding: 20px 18px;
  margin-bottom: 16px;
}
.section-title {
  font-size: 15.5px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title i { color: var(--color-primary); }
.section-desc { font-size: 12.5px; color: #94a3b8; margin: -6px 0 14px; font-weight: 500; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 16px; }
.form-group label, .form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 7px;
}
.form-row { display: flex; gap: 10px; }
.form-row > * { flex: 1; min-width: 0; }

input[type="text"], input[type="number"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  background: #f8fafc;
  color: #1e293b;
  font-family: inherit;
  transition: border-color 0.15s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--color-primary); background: #fff; }

.hint { font-size: 12px; color: #94a3b8; margin-top: 6px; font-weight: 500; }
.field-error { display: none; font-size: 12.5px; color: var(--color-danger); margin-top: 8px; line-height: 1.6; font-weight: 700; }
.field-error.visible { display: block; }

/* ---------- select-btn (참고파일 패턴): 단일/다중 선택 버튼 ---------- */
.pill-group { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { position: relative; }
.pill input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  background: #fff;
  font-size: 13.5px;
  font-weight: 700;
  color: #475569;
  transition: all 0.15s ease;
  cursor: pointer;
  user-select: none;
}
.pill input:checked + span {
  border-color: var(--color-primary);
  background: #eff6ff;
  color: #1d4ed8;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.15);
}
.pill--wide span { width: 100%; }

.checkbox-list { display: flex; flex-direction: column; gap: 10px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; font-weight: 500; color: #334155; }
.checkbox-row input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--color-primary); }

/* 8-step onset selector */
.onset-scale { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 420px) { .onset-scale { grid-template-columns: repeat(4, 1fr); } }
.onset-scale .pill span { padding: 12px 4px; font-size: 12.5px; text-align: center; width: 100%; }

/* Consent box */
.consent-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 12px;
  color: #94a3b8;
  max-height: 120px;
  overflow-y: auto;
  margin-bottom: 10px;
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.1s ease, opacity 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-block { width: 100%; }
.btn-primary { background: var(--color-primary); color: #fff; box-shadow: 0 10px 15px -3px rgba(37,99,235,0.25); }
.btn-primary:hover { background: #1d4ed8; }
.btn-secondary { background: #eff6ff; color: #1d4ed8; }
.btn-danger { background: #1e293b; color: #fff; }
.btn-ghost { background: transparent; color: #94a3b8; border: 2px solid #e2e8f0; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.sticky-submit { position: sticky; bottom: 14px; margin-top: 20px; }

/* ---------- Result / Badges ---------- */
.result-box { border-radius: 16px; padding: 18px; background: #eff6ff; text-align: center; margin-top: 14px; }
.result-box__value { font-size: 32px; font-weight: 900; color: #1e3a8a; }
.result-box__label { font-size: 12.5px; color: #64748b; margin-top: 4px; font-weight: 700; }

.risk-badge { display: inline-block; padding: 6px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 800; margin-top: 10px; }
.risk-badge--low { background: #d1fae5; color: #047857; }
.risk-badge--mid { background: #fef3c7; color: #b45309; }
.risk-badge--high { background: #ffe4e6; color: #be123c; }

/* ---------- Body Map (참고파일 flexbox part-shape 방식) ---------- */
.bodymap-toggle { display: flex; background: #e2e8f0; border-radius: 10px; padding: 4px; margin-bottom: 12px; gap: 4px; }
.bodymap-toggle button {
  flex: 1; border: none; background: transparent; color: #64748b;
  font-weight: 800; font-size: 13.5px; padding: 8px; border-radius: 8px; cursor: pointer;
}
.bodymap-toggle button.active { background: #fff; color: var(--color-primary); box-shadow: 0 1px 3px rgba(0,0,0,0.12); }

.body-map-wrap {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 15px 6px;
  background: #f1f5f9;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}
.body-col { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.body-col--side { padding-top: 48px; }

.part {
  background: #fff;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  color: #475569;
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1.2;
}
.part.active { background: var(--color-danger); border-color: #9f1239; color: #fff; box-shadow: 0 0 12px rgba(225,29,72,0.4); z-index: 10; transform: scale(1.05); }

.p-head { width: 54px; height: 54px; border-radius: 50%; }
.p-neck { width: 30px; height: 18px; border-radius: 4px; }
.p-shoulder { width: 42px; height: 38px; border-radius: 16px 16px 8px 8px; }
.p-chest { width: 76px; height: 46px; border-radius: 12px 12px 8px 8px; }
.p-abd { width: 76px; height: 56px; border-radius: 8px; }
.p-pelvis { width: 76px; height: 34px; border-radius: 8px 8px 20px 20px; }
.p-arm { width: 34px; height: 76px; border-radius: 18px; }
.p-hand { width: 34px; height: 38px; border-radius: 18px; }
.p-leg { width: 36px; height: 84px; border-radius: 12px; }
.p-foot { width: 36px; height: 28px; border-radius: 8px 8px 16px 16px; }

.bodymap-selected-list { margin-top: 10px; font-size: 12.5px; color: #94a3b8; font-weight: 600; text-align: center; }

/* ---------- Guide table ---------- */
.guide-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.guide-table th, .guide-table td { border: 1px solid #e2e8f0; padding: 9px 10px; text-align: left; vertical-align: top; }
.guide-table th { background: #eff6ff; color: #1d4ed8; font-weight: 800; }

/* ---------- Warning / danger box ---------- */
.warning-box {
  background: #fff1f2;
  border: 2px solid #fecdd3;
  color: #be123c;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* ---------- Toast ---------- */
.sw-toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px);
  background: #1e293b; color: #fff; padding: 12px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 700; opacity: 0; pointer-events: none;
  transition: all 0.25s ease; z-index: 999; box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.sw-toast--visible { opacity: 1; transform: translate(-50%, 0); }
.sw-toast--error { background: var(--color-danger); }

/* ---------- Landing (\ubc29\ubb38\ubaa9\uc801 \uc120\ud0dd) ---------- */
.landing-hero { text-align: center; padding: 8px 0 22px; }
.landing-hero__icon {
  width: 64px; height: 64px; border-radius: 20px; background: #eff6ff; color: var(--color-primary);
  display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 14px;
}
.landing-hero__title { font-size: 20px; font-weight: 900; color: #1e293b; }
.landing-hero__desc { font-size: 13px; color: #94a3b8; margin-top: 6px; font-weight: 500; line-height: 1.6; }

.purpose-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.purpose-card {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  background: #fff; border: 2px solid #e2e8f0; border-radius: 16px; padding: 16px 16px;
  transition: all 0.15s ease;
}
.purpose-card:active { transform: scale(0.98); }
.purpose-card:hover { border-color: var(--color-primary); box-shadow: 0 6px 16px rgba(37,99,235,0.12); }
.purpose-card__icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff;
}
.purpose-card__body { flex: 1; min-width: 0; }
.purpose-card__title { font-size: 15px; font-weight: 800; color: #1e293b; }
.purpose-card__desc { font-size: 12px; color: #94a3b8; font-weight: 600; margin-top: 2px; line-height: 1.5; }
.purpose-card__arrow { color: #cbd5e1; font-size: 15px; flex-shrink: 0; }

.landing-doctor-link {
  display: block; text-align: center; margin-top: 24px; font-size: 12.5px; color: #cbd5e1;
  font-weight: 700; text-decoration: none;
}
.landing-doctor-link:hover { color: #94a3b8; }

/* ---------- Success screen ---------- */
.success-screen { text-align: center; padding: 70px 24px; background: var(--color-primary); color: #fff; min-height: 100dvh; }
.success-screen__icon { font-size: 56px; margin-bottom: 14px; }
.success-screen__title { font-size: 21px; font-weight: 900; }
.success-screen__desc { font-size: 13px; color: #dbeafe; margin-top: 10px; line-height: 1.6; font-weight: 500; }
.success-screen__home-btn {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 30px;
  padding: 13px 28px; border-radius: 999px; background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.55); color: #fff; font-weight: 700; font-size: 14px;
  text-decoration: none; transition: background 0.15s ease, transform 0.15s ease;
}
.success-screen__home-btn:hover { background: rgba(255,255,255,0.28); }
.success-screen__home-btn:active { transform: scale(0.97); }

/* ================================================================
   Doctor Dashboard (doctor.html) - 참고 doctor.html 스타일 계승
   ================================================================ */
.dash-shell { height: 100vh; display: flex; flex-direction: column; overflow: hidden; background: #f1f5f9; }

.dash-header {
  background: #1e3a8a;
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.dash-header__brand { display: flex; align-items: center; gap: 12px; }
.dash-header__badge {
  background: rgba(255,255,255,0.1); color: #bfdbfe; border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 12px; border-radius: 10px; font-size: 15px; font-weight: 900;
}
.dash-header__title { font-size: 16px; font-weight: 800; }
.dash-header__right { display: flex; align-items: center; gap: 14px; font-size: 13px; font-weight: 700; color: #bfdbfe; }
.live-badge { background: #1e40af; padding: 6px 12px; border-radius: 999px; display: flex; align-items: center; gap: 8px; border: 1px solid #3b82f6; font-size: 11.5px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; animation: pulse-blue 1.4s infinite; }

.dash-body { flex: 1; display: flex; overflow: hidden; }

.dash-sidebar { width: 300px; background: #fff; border-right: 1px solid #e2e8f0; display: flex; flex-direction: column; flex-shrink: 0; }
.dash-sidebar__title {
  padding: 12px 14px; background: #f8fafc; border-bottom: 1px solid #e2e8f0;
  font-weight: 800; font-size: 13.5px; color: #334155; display: flex; justify-content: space-between;
}
.dash-sidebar__count { color: var(--color-primary); background: #eff6ff; padding: 2px 10px; border-radius: 999px; font-size: 12px; }
.dash-sidebar__list { flex: 1; overflow-y: auto; }

.patient-card {
  padding: 14px; border-bottom: 1px solid #f1f5f9; cursor: pointer; font-size: 13.5px;
  border-left: 4px solid transparent; transition: all 0.15s ease; display: flex; align-items: center; gap: 10px;
}
.patient-card:hover { background: #f8fafc; }
.patient-card.active { background: #eff6ff; border-left-color: var(--color-primary); }
.patient-card__track {
  width: 32px; height: 32px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 12.5px; color: #fff; flex-shrink: 0;
}
.track-color-A { background: #2563eb; }
.track-color-B { background: #0d9488; }
.track-color-C { background: #db2777; }
.track-color-D { background: #7c3aed; }
.track-color-E { background: #64748b; }
.patient-card__meta { flex: 1; min-width: 0; }
.patient-card__name { font-weight: 800; color: #1e293b; }
.patient-card__sub { font-size: 12px; color: var(--color-primary); font-weight: 700; margin-top: 2px; }
.patient-card__time { font-size: 11px; color: #94a3b8; font-weight: 700; white-space: nowrap; }

.queue-empty { text-align: center; color: #94a3b8; font-size: 13px; padding: 40px 14px; font-weight: 600; }

.dash-main { flex: 1; padding: 20px; overflow-y: auto; position: relative; }

.patient-header {
  background: #fff; border-radius: 14px; padding: 16px 18px; border: 1px solid #e2e8f0;
  margin-bottom: 16px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
.patient-header__name { font-size: 22px; font-weight: 900; color: #1e293b; }
.patient-header__badge { font-size: 13px; color: #64748b; font-weight: 700; margin-top: 4px; }

.status-badge { padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.status-badge--waiting { background: #fef3c7; color: #b45309; }
.status-badge--in_progress { background: #dbeafe; color: #1d4ed8; }
.status-badge--done { background: #d1fae5; color: #047857; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-bottom: 16px; }
.info-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 12px 14px; }
.info-item__label { font-size: 11px; color: #94a3b8; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; }
.info-item__value { font-size: 14px; font-weight: 700; margin-top: 4px; white-space: pre-line; color: #1e293b; }

.anaphylaxis-banner {
  background: var(--color-danger); color: #fff; padding: 14px 18px; border-radius: 14px;
  font-weight: 800; font-size: 14px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
  animation: pulse-danger 1.6s infinite;
}
@keyframes pulse-danger { 0%, 100% { box-shadow: 0 0 0 0 rgba(225,29,72,0.5); } 50% { box-shadow: 0 0 0 8px rgba(225,29,72,0); } }
@keyframes pulse-blue { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(225,29,72,0.7); } 70% { box-shadow: 0 0 0 20px rgba(225,29,72,0); } 100% { box-shadow: 0 0 0 0 rgba(225,29,72,0); } }

.recording-panel { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 16px; margin-bottom: 16px; }
.recording-panel__controls { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.mic-active { animation: pulse-ring 1.5s infinite; background-color: var(--color-danger) !important; color: #fff !important; }
.rec-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--color-danger); display: inline-block; animation: pulse-blue 1.2s infinite; }
.recording-transcript {
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 10px 12px;
  font-size: 13px; color: #334155; min-height: 60px; max-height: 160px; overflow-y: auto; white-space: pre-wrap;
  width: 100%; font-family: inherit; resize: vertical; display: block; box-sizing: border-box;
}
.recording-transcript:focus {
  outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

.soap-panel { background: #fff; border: 1px solid #bfdbfe; border-radius: 14px; overflow: hidden; box-shadow: 0 1px 2px rgba(15,23,42,0.04); }
.soap-panel__header { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: #eff6ff; border-bottom: 1px solid #dbeafe; }
.soap-panel__body { padding: 16px; position: relative; }
.soap-output {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 14px; line-height: 1.7; font-weight: 600; white-space: pre-wrap; min-height: 90px; color: #1e293b;
}
.soap-output.placeholder { color: #94a3b8; font-style: italic; font-family: inherit; font-weight: 500; }
.soap-actions { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; padding: 0 16px 16px; }

.ai-loading-overlay {
  position: absolute; inset: 0; background: rgba(255,255,255,0.92); display: flex; flex-direction: column;
  align-items: center; justify-content: center; z-index: 5; border-radius: 0 0 14px 14px;
}
.ai-loading-icon { font-size: 34px; color: var(--color-primary); margin-bottom: 10px; animation: pulse-blue 1.4s infinite; }
.copy-overlay {
  position: absolute; inset: 0; background: rgba(37,99,235,0.92); color: #fff; display: flex; align-items: center;
  justify-content: center; font-weight: 800; font-size: 14px; z-index: 6; border-radius: 0 0 14px 14px;
}

.spinner { width: 15px; height: 15px; border: 2.5px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; display: inline-block; }
.spinner--dark { border: 2.5px solid rgba(30,41,59,0.15); border-top-color: var(--color-primary); }
@keyframes spin { to { transform: rotate(360deg); } }

.text-muted { color: #94a3b8; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- 1차 AI 요약 패널 (CC/PI · 요약 · AI Tip · Triage) ---------- */
.ai-summary-panel {
  background: #fff; border: 1px solid #bfdbfe; border-radius: 14px; padding: 16px 18px;
  margin-bottom: 16px; box-shadow: 0 1px 2px rgba(15,23,42,0.04); position: relative;
}
.ai-summary-panel__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
.ai-summary-panel__title { font-size: 14.5px; font-weight: 800; color: #1e293b; display: flex; align-items: center; gap: 8px; }
.ai-summary-panel__title i { color: var(--color-primary); }
.ai-summary-block { margin-bottom: 12px; }
.ai-summary-block:last-child { margin-bottom: 0; }
.ai-summary-block__label { font-size: 11px; color: #94a3b8; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 4px; }
.ai-summary-block__value { font-size: 13.5px; color: #1e293b; font-weight: 600; line-height: 1.6; white-space: pre-line; }
.ai-summary-pending { display: flex; align-items: center; gap: 10px; color: #64748b; font-size: 13px; font-weight: 700; padding: 10px 0; }
.ai-tip-box {
  background: #fffbeb; border: 1px solid #fde68a; color: #92400e; border-radius: 12px;
  padding: 12px 14px; font-size: 13px; font-weight: 600; line-height: 1.6;
}

.triage-badge { display: inline-block; padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.triage-badge--routine { background: #d1fae5; color: #047857; }
.triage-badge--watch { background: #fef3c7; color: #b45309; }
.triage-badge--urgent { background: #ffe4e6; color: #be123c; }
