*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:       #1c2e43;
  --ink-mid:   #1c2e43;
  --ink-light: rgba(28,46,67,.72);
  --bone:      #f3ecd4;
  --white:     #FFFFFF;
  --gold:      #000000;
  --gold-lt:   #f3ecd4;
  --gold-dk:   #000000;
  --green:     #1c2e43;
  --green-lt:  #f3ecd4;
  --blue:      #000000;
  --blue-lt:   #f3ecd4;
  --border:    rgba(28,46,67,.28);
  --shadow:    0 2px 16px rgba(0,0,0,.12);
  --r:         10px;
  --r-lg:      18px;
}

body {
  font-family: 'Noto Sans', sans-serif;
  background: var(--bone);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
}

header {
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-icon {
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
  margin: 0px auto 20px auto;
}
.header-icon svg { width: 24px; height: 24px; }
header h1 { font-family: 'Noto Sans', sans-serif; font-size: 1.5rem; font-weight: 700; line-height: 1.2; }
header p { font-size: .8rem; color: var(--ink-light); margin-top: 1px; }
.header-badge {
  margin-left: auto;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .72rem; color: var(--gold-lt); letter-spacing: .04em;
}

.wrap { max-width: 960px; margin: 0 auto; padding: 36px 24px 60px; }
.form { position: sticky; top: 20px; }
.grid-2 { display: grid; grid-template-columns: 340px 1fr; gap: 24px; align-items: start; }

.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow); }
.card-title {
  font-family: 'Noto Sans', sans-serif; font-size: 1rem; font-weight: 700;
  margin-bottom: 20px; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.card-title::before { content: ''; display: block; width: 4px; height: 18px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }

.field { margin-bottom: 18px; }
.field:last-child { margin-bottom: 0; }

label { display: block; font-size: .78rem; font-weight: 600; color: var(--ink-mid); margin-bottom: 6px; letter-spacing: .02em; text-transform: uppercase; }

input[type="number"], select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: 'Noto Sans', sans-serif; font-size: .92rem; font-weight: 500; color: var(--ink); background: var(--white);
  appearance: none; -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
input:focus, select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-lt); }
.input-wrap { position: relative; }
.input-prefix { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); font-size: .9rem; color: var(--ink-mid); pointer-events: none; }
.input-wrap input { padding-left: 28px; }
.select-wrap { position: relative; }
.select-wrap::after { content: '▾'; position: absolute; right: 13px; top: 50%; transform: translateY(-50%); font-size: .8rem; color: var(--ink-light); pointer-events: none; }

.toggle-group { display: flex; gap: 8px; }
.toggle-opt {
  flex: 1; text-align: center; padding: 10px 8px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  cursor: pointer; font-size: .82rem; font-weight: 600; color: var(--ink-mid);
  transition: all .2s; user-select: none;
}
.toggle-opt.active { border-color: var(--gold); background: var(--gold-lt); color: var(--gold-dk); }

.is-invalid {
  border-color: #b12b2b !important;
  box-shadow: 0 0 0 3px rgba(177, 43, 43, .15) !important;
}

.toggle-group.has-error .toggle-opt {
  border-color: #b12b2b;
}

.field-error {
  display: none;
  margin-top: 6px;
  font-size: .74rem;
  color: #b12b2b;
  line-height: 1.35;
}

.field-error.visible {
  display: block;
}

.field-hint {
  display: none;
  margin-top: 6px;
  font-size: .74rem;
  color: var(--ink-mid);
  line-height: 1.35;
  font-weight: 500;
}

.field-hint:not(:empty) {
  display: block;
}

.manual-row { display: none; }
.manual-row.visible { display: block; }

.iess-row { display: none; }
.iess-row.visible { display: block; }
.hint { font-size: .75rem; color: var(--ink-light); margin-top: 5px; line-height: 1.4; margin-bottom: 10px; }

.btn {
  display: block; width: 100%; padding: 13px;
  background: var(--ink); color: var(--white); border: none; border-radius: var(--r);
  font-family: 'Noto Sans', sans-serif; font-size: .92rem; font-weight: 700;
  cursor: pointer; transition: background .2s, transform .1s; letter-spacing: .02em; margin-top: 4px;
}
.btn:hover { background: #000000; }
.btn:active { transform: scale(.98); }
.btn:disabled { background: var(--border); color: var(--ink-light); cursor: not-allowed; }

#results { display: flex; flex-direction: column; min-height: 100%; }
#results.visible .results-empty { display: none; }

#results .summary-bar,
#results .result-intro,
#results .result-cards,
#results .disclaimer { display: none; }

#results.visible .summary-bar { display: grid; }
#results.visible .result-intro { display: block; }
#results.visible .result-cards { display: flex; }
#results.visible .disclaimer { display: block; }

.results-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 300px;
  color: var(--ink);
  opacity: 0.35;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  padding: 2rem;
  border: 2px dashed currentColor;
  border-radius: var(--r-lg);
}

.result-intro {
  font-size: .82rem; color: var(--ink-mid); margin-bottom: 16px;
  background: var(--white); border-radius: 8px; padding: 10px 14px; border-left: 3px solid var(--ink);
}
.result-cards { display: flex; flex-direction: column; gap: 16px; }

.result-card {
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; background: var(--white); box-shadow: var(--shadow);
  animation: slideIn .3s ease forwards;
}
@keyframes slideIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.rch { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 10px; }
.rch-left { display: flex; align-items: center; gap: 10px; }

.rch-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}

.rch-icon--ok {
  background: rgba(255,255,255,0.22);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.35);
}

.rch-icon--no {
  background: rgba(220,53,69,0.12);
  color: #c0392b;
  box-shadow: 0 0 0 2px rgba(220,53,69,0.25);
}

.rch-icon--sm {
  width: 24px;
  height: 24px;
  font-size: .85rem;
  margin-right: 6px;
}

.rch.biess   { background: linear-gradient(135deg, #1c2e43, #000000); color: #FFFFFF; }
.rch.privada { background: linear-gradient(135deg, #1c2e43, #000000); color: #FFFFFF; }
.rc-inst { font-family: 'Noto Sans', sans-serif; font-size: 1.05rem; font-weight: 700; }
.rc-prod { font-size: .75rem; opacity: .75; margin-top: 1px; }
.rc-tasa { background: rgba(255,255,255,.18); border-radius: 20px; padding: 4px 12px; font-size: .78rem; font-weight: 600; letter-spacing: .03em; white-space: nowrap; }

.rcb { padding: 18px 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.rc-stat-label { font-size: .72rem; color: var(--ink-light); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 3px; }
.rc-stat-val { font-size: 1.2rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.rc-stat-val.big { font-size: 1.5rem; color: var(--gold-dk); }
.rc-stat-sub { font-size: .72rem; color: var(--ink-light); }

.rcc { padding: 0 20px 16px; display: flex; flex-wrap: wrap; gap: 6px;}
.rc-badge { font-size: .72rem; padding: 3px 10px; border-radius: 20px; font-weight: 500; }
.rc-badge.ok   { background: var(--green-lt); color: var(--green); }
.rc-badge.info { background: var(--blue-lt); color: var(--blue); }

.rc-download { padding: 0 20px 16px; }
@media (max-width: 600px) {
  .rc-download { padding: 16px 0 16px; }
}
.btn-download {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px;
  background: none; border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: 'Noto Sans', sans-serif; font-size: .8rem; font-weight: 600; color: var(--ink-mid);
  cursor: pointer; transition: border-color .2s, color .2s, background .2s;
}
.btn-download svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-download:hover { border-color: var(--gold); color: var(--gold-dk); background: var(--gold-lt); }
.btn-download:active { transform: scale(.97); }

.no-aplica {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.5px dashed var(--border);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  color: var(--ink-light);
  font-size: .88rem;
}
.no-aplica-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 7px;
  font-weight: 700;
  color: var(--ink-mid);
  width: 100%;
}
.no-aplica-razones {
  margin-top: 4px;
  text-align: left;
  color: var(--ink-light);
  line-height: 1.5;
}
.no-aplica strong { display: block; color: var(--ink-mid); }
.no-aplica-title { margin-top: 8px; font-size: .78rem; color: var(--ink-light); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; }

.summary-bar {
  background: var(--ink); color: var(--white); border-radius: var(--r-lg);
  padding: 16px 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px;
}
.sb-label { font-size: .7rem; color: rgba(255,255,255,.60); text-transform: uppercase; letter-spacing: .04em; }
.sb-val { font-size: 1.1rem; font-weight: 600; margin-top: 1px; color: #fff; }
.sb-val.accent { color: var(--bone); }

.disclaimer { font-size: .73rem; color: var(--ink-light); border-top: 1px solid var(--border); padding-top: 16px; margin-top: 16px; line-height: 1.5; }

.proyecto-loaded {
  display: none; align-items: center; gap: 8px;
  background: var(--green-lt); border: 1px solid #1c2e43; border-radius: 8px;
  padding: 8px 12px; font-size: .8rem; color: var(--green); margin-bottom: 14px; font-weight: 600;
}
.proyecto-loaded.visible { display: flex; }
.proyecto-loaded button { margin-left: auto; background: none; border: none; color: var(--green); cursor: pointer; font-size: 1rem; line-height: 1; }

.divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 40;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 90vw);
  height: 100vh;
  background: var(--bone);
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 30px rgba(0, 0, 0, .22);
  transform: translateX(102%);
  transition: transform .28s ease;
  z-index: 50;
  display: flex;
  flex-direction: column;
}

.drawer-head {
  background: var(--ink);
  color: var(--white);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-head h2 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.drawer-close {
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.drawer-body {
  overflow-y: auto;
  padding: 14px;
}

.drawer-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-acc {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
  overflow: hidden;
}

.drawer-acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 16px;
  align-items: center;
  background: linear-gradient(135deg, #1c2e43, #000000);
  color: #fff;
}

.drawer-acc summary::-webkit-details-marker { display: none; }

.drawer-acc-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}

.drawer-acc-sub {
  font-size: .74rem;
  color: rgba(255,255,255,.70);
}

.drawer-acc-arrow {
  font-size: .85rem;
  color: rgba(255,255,255,.80);
  transition: transform .2s ease;
}

.drawer-acc[open] .drawer-acc-arrow {
  transform: rotate(180deg);
}

.drawer-acc-body {
  border-top: 1px solid var(--border);
  padding: 12px 14px;
}

.drawer-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.drawer-stat-label {
  font-size: .68rem;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.drawer-stat-val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.drawer-stat-val.big {
  color: var(--gold-dk);
  font-size: 1.16rem;
}

.drawer-stat-sub {
  font-size: .65rem;
  color: var(--ink-light);
  margin-top: 2px;
  line-height: 1.3;
}

.drawer-stats .rc-download {
  padding: 0;
  grid-column: span 2;
}

body.drawer-open {
  overflow: hidden;
}

body.drawer-open .drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.drawer-open .mobile-drawer {
  transform: translateX(0);
}

.project-dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 60;
}

.project-dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(.98);
  width: min(1080px, calc(100vw - 24px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 70;
  padding: 18px;
}

.project-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.project-dialog-head h2 {
  font-size: 1.08rem;
  font-weight: 700;
}

.project-dialog-close {
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.project-dialog-hint {
  font-size: .8rem;
  color: var(--ink-light);
  margin-bottom: 14px;
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.project-grid > * {
  flex: 0 1 320px;
  max-width: 340px;
  min-width: 260px;
  margin: 0 6px 12px 6px;
}

.project-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.project-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.project-card-body {
  padding: 12px;
}

.project-name {
  font-size: .95rem;
  font-weight: 700;
}

.project-offer {
  margin-top: 2px;
  font-size: .74rem;
  font-weight: 600;
  color: var(--ink-mid);
}

.project-location {
  margin-top: 2px;
  font-size: .76rem;
  color: var(--ink-light);
}

.project-view-btn {
  margin-top: 10px;
  width: 100%;
  border: 1px solid var(--border);
  background: var(--bone);
  color: var(--ink);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
}

.project-types {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-type-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  border-top: 1px dashed var(--border);
  padding-top: 8px;
}

.project-type-meta {
  font-size: .76rem;
}

.project-type-price {
  display: block;
  font-size: .8rem;
  font-weight: 700;
}

.project-type-pitch {
  margin: 5px 0 0;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.35;
  border-radius: 6px;
  padding: 4px 7px;
}

.project-type-pitch--up {
  color: #7c4d00;
  background: #fff3cd;
}

.project-type-pitch--down {
  color: #1a5c2a;
  background: #d4edda;
}

.project-type-pitch--exact {
  color: #1a3c6a;
  background: #cfe2ff;
}

.project-simulate-btn {
  border: none;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
}

.project-empty {
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 16px;
  color: var(--ink-light);
  font-size: .86rem;
  grid-column: 1 / -1;
}

body.project-dialog-open {
  overflow: hidden;
}

body.project-dialog-open .project-dialog-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.project-dialog-open .project-dialog {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.project-dialog-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  background: none;
  box-shadow: none;
  border: none;
  grid-column: 1 / -1;
}

.btn-skip-projects {
  background: #fff3cd;
  color: #7c4d00;
  border: 1.5px solid #ffe082;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 22px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  transition: background 0.18s, color 0.18s, border 0.18s;
  margin: 0 auto;
  display: block;
}
.btn-skip-projects:hover {
  background: #ffe082;
  color: #4e3200;
  border-color: #ffd54f;
}

@media (max-width: 700px) {
  header { padding: 20px; }
  .header-badge { display: none; }
  .wrap { padding: 20px 14px 40px; }
  .grid-2 { grid-template-columns: 1fr; }
  .rcb { grid-template-columns: 1fr 1fr; }
  .summary-bar { grid-template-columns: 1fr 1fr; }
  .project-grid { grid-template-columns: 1fr; max-width: 100%; }
  #results { display: none !important; }
}

@media (min-width: 701px) and (max-width: 980px) {
  .project-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
}

@media (min-width: 701px) {
  .drawer-overlay,
  .mobile-drawer {
    display: none;
  }
}

/* Personal Data Modal */
.personal-data-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}

.personal-data-overlay.visible {
  display: block;
}

.personal-data-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  max-width: 440px;
  width: 90%;
  z-index: 999;
  max-height: 90vh;
  overflow-y: auto;
}

.personal-data-modal.visible {
  display: block;
}

.personal-data-modal-content {
  padding: 28px;
}

.personal-data-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.personal-data-modal-head h2 {
  margin: 0;
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .02em;
}

.personal-data-modal-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--ink-light);
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  transition: background-color 0.2s, color 0.2s;
}

.personal-data-modal-close:hover {
  background-color: rgba(28, 46, 67, 0.08);
  color: var(--ink);
}

.personal-data-field {
  margin-bottom: 16px;
}

.personal-data-field label {
  display: block;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-mid);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.personal-data-field input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.personal-data-field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-lt);
}

.personal-data-field input::placeholder {
  color: var(--ink-light);
}

.personal-data-summary {
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(28, 46, 67, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.personal-data-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.personal-data-summary-item:last-child {
  margin-bottom: 0;
}

.personal-data-summary-item .label {
  font-weight: 600;
  color: var(--ink-mid);
}

.personal-data-summary-item .value {
  color: var(--ink);
  font-weight: 500;
}

.personal-data-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.personal-data-actions button {
  flex: 1;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.btn-cancel {
  background-color: var(--white);
  color: var(--ink);
  border-color: var(--border);
}

.btn-cancel:hover {
  background-color: rgba(28, 46, 67, 0.04);
  border-color: var(--ink-light);
}

.btn-confirm {
  background-color: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-confirm:hover {
  background-color: #0f1b2e;
  border-color: #0f1b2e;
}
