.hotel-booking-page {
  min-width: 0;
  background: #f3f6fc;
}

.hotel-booking-content {
  --hotel-blue: #0e3fad;
  --hotel-text: #191c1e;
  --hotel-muted: #444653;
  --hotel-soft: #eef3fb;
  --hotel-line: #e6edf7;
  color: var(--hotel-text);
}

.hotel-booking-content *,
.hotel-booking-content *::before,
.hotel-booking-content *::after {
  box-sizing: border-box;
}

.hotel-booking-hero,
.hotel-card,
.hotel-manage-card,
.hotel-help-card {
  border: 1px solid var(--hotel-line);
  border-radius: 32px;
  background: #ffffff;
}

.hotel-booking-hero {
  display: grid;
  grid-template-columns: 32px 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 22px 24px;
}

.hotel-booking-back {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: #172131;
}

.hotel-booking-back svg {
  width: 18px;
  height: 18px;
}

.hotel-booking-thumb {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  object-fit: cover;
}

.hotel-booking-title {
  min-width: 0;
}

.hotel-booking-title > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.hotel-booking-title h1 {
  margin: 0;
  color: #002a81;
  font-size: clamp(1.25rem, 1.012rem + 0.762vw, 1.75rem);
  line-height: 1.08;
  font-weight: 700;
}

.hotel-booking-title span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 10px;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 12px;
  font-weight: 600;
}

.hotel-booking-title p {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 8px 0 0;
  color: #444653;
  font-size: 14px;
  line-height: 1.3;
}

.hotel-booking-title b {
  color: #0c2462;
}

.hotel-invoice-btn,
.hotel-manage-card button,
.hotel-help-card button,
.hotel-map-actions button {
  border: 0;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

.hotel-invoice-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 190px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  background: var(--hotel-blue);
  color: #ffffff;
  font-size: 16px;
  box-shadow: 0 14px 28px rgba(20, 75, 184, 0.2);
}

.hotel-invoice-btn svg {
  width: 15px;
  height: 15px;
}

.hotel-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.77fr) minmax(300px, 0.98fr);
  gap: clamp(0.75rem, -7.25rem + 10vw, 1.5rem);
  margin-top: 24px;
}

.hotel-booking-main,
.hotel-booking-side {
  display: grid;
  align-content: start;
  gap: clamp(0.75rem, -7.25rem + 10vw, 1.5rem);
  min-width: 0;
}

.hotel-card,
.hotel-manage-card,
.hotel-help-card {
  padding: 24px;
}

.hotel-card h2,
.hotel-manage-card h2,
.hotel-help-card h2 {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 24px;
  color: #172131;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.hotel-card h2 svg {
  width: 16px;
  height: 16px;
  color: var(--hotel-blue);
}

.hotel-status-card {
  min-height: 275px;
}

.hotel-status-timeline {
  position: relative;
  display: grid;
  gap: 22px;
}

.hotel-status-timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 13px;
  width: 2px;
  background: #dfe6f1;
}

.hotel-status-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.hotel-status-timeline article > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #d8dde7;
  color: #ffffff;
}

.hotel-status-timeline article > span svg {
  width: 14px;
  height: 14px;
}

.hotel-status-timeline .is-done > span {
  background: #22c55e;
}

.hotel-status-timeline .is-current > span {
  border: 8px solid #0f51cb;
  background: #ffffff;
}

.hotel-status-timeline strong {
  display: block;
  color: #142033;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}

.hotel-status-timeline small {
  display: block;
  margin-top: 4px;
  color: #444653;
  font-size: 14px;
  line-height: 1.3;
}

.hotel-status-timeline .is-current strong {
  color: #0f51cb;
}

.hotel-status-timeline .is-muted strong,
.hotel-status-timeline .is-muted small {
  color: #b0b8c5;
}

.hotel-mini-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(0.75rem, -7.25rem + 10vw, 1.5rem);
}

.hotel-stay-card,
.hotel-guests-card {
  min-height: 235px;
}

.hotel-stay-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.5rem, -6.1667rem + 8.3333vw, 1.125rem);
  padding-bottom: 18px;
  border-bottom: 1px solid #edf2f8;
}

.hotel-stay-dates div + div {
  padding-left: clamp(0.625rem, -7.375rem + 10vw, 1.375rem);
  border-left: 1px solid #edf2f8;
}

.hotel-stay-card span,
.hotel-stay-meta span {
  display: block;
  color: #444653;
  font-size: 12px;
  font-weight: 600;
}

.hotel-stay-card strong,
.hotel-stay-meta strong {
  display: block;
  margin-top: 8px;
  color: #172131;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.hotel-stay-card small {
  display: block;
  margin-top: 3px;
  color: #566276;
  font-size: 10px;
}

.hotel-stay-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.hotel-stay-meta div:last-child {
  grid-column: 1 / -1;
}

.hotel-stay-meta div:last-child strong {
  color: #0750bb;
}

.hotel-guests-card {
  display: grid;
  align-content: start;
}

.hotel-guests-card article {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 28px;
  background: #eef3fb;
}

.hotel-guests-card article + article {
  margin-top: 16px;
}

.hotel-guests-card article svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.1;
  color: var(--hotel-blue);
}

.hotel-guests-card strong {
  display: block;
  color: #142033;
  font-size: 14px;
  font-weight: 700;
}

.hotel-guests-card small {
  display: block;
  margin-top: 2px;
  color: #444653;
  font-size: 12px;
}

.hotel-amenities-card {
  min-height: 142px;
}

.hotel-amenities-card div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hotel-amenities-card span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px;
  border-radius: 32px;
  background: #eef3fb;
  color: #172131;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.hotel-amenities-card svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.1;
  color: var(--hotel-blue);
}

.hotel-cancel-card h2 {
  margin-bottom: 22px;
}

.hotel-cancel-card h2 span {
  display: inline-flex;
  align-items: center;
  min-height: 16px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f0fdf4;
  color: #15803d;
  font-size: 10px;
  font-weight: 600;
}

.hotel-refund-line {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: #e7edf6;
  overflow: visible;
}

.hotel-refund-line::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 54%;
  border-radius: inherit;
  background: #22c55e;
}

.hotel-refund-line span {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #22c963;
  transform: translate(-50%, -50%);
}

.hotel-refund-labels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hotel-refund-labels div:nth-child(2) {
  text-align: center;
}

.hotel-refund-labels div:last-child {
  text-align: right;
}

.hotel-refund-labels strong {
  display: block;
  color: #172131;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.hotel-refund-labels div:first-child strong {
  color: #15803d;
}

.hotel-refund-labels div:last-child strong {
  color: #e2373f;
}

.hotel-refund-labels small {
  display: block;
  margin-top: 4px;
  color: #444653;
  font-size: 12px;
  line-height: 1.25;
}

.hotel-manage-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #174bb9;
  color: #ffffff;
}

.hotel-manage-card h2 {
  margin: 0 0 4px;
  color: #ffffff;
}

.hotel-manage-card button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 32px;
  background: #ffffff1a;
  color: #ffffff;
  font-size: 14px;
  text-align: left;
}

.hotel-manage-card button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.hotel-manage-card button.danger {
  background: #ffdad6;
  color: #93000a;
}

.hotel-payment-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf2f8;
}

.hotel-payment-card dl div,
.hotel-total-row,
.hotel-method-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hotel-payment-card dt,
.hotel-total-row span,
.hotel-method-box span {
  color: #444653;
  font-size: 14px;
  font-weight: 400;
}

.hotel-payment-card dd {
  margin: 0;
  color: #444653;
  font-size: 14px;
  font-weight: 600;
}

.hotel-total-row {
  padding: 18px 0;
}

.hotel-total-row span {
  color: #172131;
  font-size: 16px;
  font-weight: 600;
}

.hotel-total-row strong {
  color: #0e3fad;
  font-size: 20px;
  font-weight: 600;
}

.hotel-method-box {
  min-height: 68px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #f0f4fb;
}

.hotel-method-box strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
  color: #172131;
  font-size: 11px;
}

.hotel-method-box strong svg {
  width: 14px;
  height: 14px;
  color: var(--hotel-blue);
}

.hotel-method-box small {
  display: block;
  margin-top: 4px;
  color: #7b8798;
  font-size: 12px;
}

.hotel-method-box b {
  display: block;
  margin-top: 6px;
  color: #18ad40;
  font-size: 12px;
  text-align: right;
}

.hotel-location-card p {
  margin: -8px 0 16px;
  color: #444653;
  font-size: 14px;
  line-height: 1.5;
}

.hotel-map-preview {
  position: relative;
  height: 128px;
  overflow: hidden;
  border-radius: 20px;
  background: #0d6682;
}

.hotel-map-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-map-preview > svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  padding: 4px;
  border-radius: 50%;
  background: #0d51bd;
  color: #ffffff;
  transform: translate(-50%, -50%);
}

.hotel-map-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 12px;
  margin-top: 16px;
}

.hotel-map-actions button {
  min-height: 38px;
  border-radius: 32px;
  background: #f0f4fb;
  color: var(--hotel-blue);
  font-size: 12px;
  font-weight: 600;
}

.hotel-map-actions button:last-child {
  display: grid;
  place-items: center;
}

.hotel-map-actions svg {
  width: 16px;
  height: 16px;
}

.hotel-help-card {
  padding: 24px;
  background: #f0f4fb;
  border: 2px solid #0e3fad1a;
}

.hotel-help-card h2 {
  margin-bottom: 10px;
}

.hotel-help-card p {
  max-width: 350px;
  margin: 0 0 22px;
  color: #444653;
  font-size: 14px;
  line-height: 1.45;
}

.hotel-help-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 36px;
  border: 1px solid #0e3fad33;
  border-radius: 32px;
  background: #ffffff;
  color: var(--hotel-blue);
  font-size: 16px;
}

.hotel-help-card button + button {
  margin-top: 12px;
}

.hotel-help-card svg {
  width: 15px;
  height: 15px;
}

body.modify-booking-open,
body.cancel-booking-open {
  overflow: hidden;
}

.modify-booking-modal,
.cancel-booking-modal,
.refund-details-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 28px;
  pointer-events: none;
  visibility: hidden;
}

.modify-booking-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.cancel-booking-modal {
  z-index: 3010;
}

.refund-details-modal {
  z-index: 3020;
}

.cancel-booking-modal.is-open,
.refund-details-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.modify-booking-backdrop,
.cancel-booking-backdrop,
.refund-details-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 14, 0.78);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.modify-booking-modal.is-open .modify-booking-backdrop {
  opacity: 1;
}

.cancel-booking-modal.is-open .cancel-booking-backdrop,
.refund-details-modal.is-open .refund-details-backdrop {
  opacity: 1;
}

.modify-booking-dialog {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  width: min(100%, 800px);
  max-height: min(94vh, 860px);
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  color: #20242b;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.22s ease;
}

.modify-booking-modal.is-open .modify-booking-dialog {
  transform: translateY(0) scale(1);
}

.modify-booking-close {
  position: absolute;
  top: 38px;
  right: 42px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #343b47;
  cursor: pointer;
}

.modify-booking-close svg {
  width: 24px;
  height: 24px;
}

.modify-booking-head {
  padding: 26px;
}

.modify-booking-head h2 {
  margin: 0;
  color: #191c1e;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.modify-booking-head p {
  margin: 8px 0 0;
  color: #444653;
  font-size: 14px;
}

.modify-stepper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0 42px 26px;
}

.modify-stepper div {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #3f4653;
  text-align: center;
}

.modify-stepper div::before {
  content: "";
  position: absolute;
  top: 17px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: #dbe1e9;
}

.modify-stepper div:first-child::before {
  display: none;
}

.modify-stepper div.is-active::before,
.modify-stepper div.is-complete + div::before,
.modify-stepper div.is-complete::before {
  background: #164ec4;
}

.modify-stepper span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dce2ea;
  color: #4b5563;
  font-size: 14px;
  font-weight: 700;
}

.modify-stepper .is-active span,
.modify-stepper .is-complete span {
  background: #0e3fad;
  color: #ffffff;
}

.modify-stepper strong {
  color: #343b47;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modify-stepper .is-active strong,
.modify-stepper .is-complete strong {
  color: #164ec4;
}

.modify-step {
  display: none;
  min-height: 0;
  overflow-y: auto;
  padding: 24px;
}

.modify-step.is-active {
  display: block;
}

.modify-date-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.78fr);
  gap: 24px;
}

.modify-date-left {
  display: grid;
  align-content: start;
  gap: 22px;
}

.modify-calendar-card {
  padding: 24px;
  border-radius: 16px;
  background: #f2f4f7;
}

.modify-calendar-card h3,
.modify-review-side h3 {
  margin: 0 0 16px;
  color: #444653;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modify-calendar-week,
.modify-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
}

.modify-calendar-week span {
  display: grid;
  place-items: center;
  height: 28px;
  color: #444653;
  font-size: 12px;
  font-weight: 700;
}

.modify-calendar-days {
  margin-top: 14px;
  row-gap: 8px;
  column-gap: 4px;
}

.modify-calendar-days button {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 36px;
  justify-self: center;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #191c1e;
  font-size: 14px;
  cursor: pointer;
}

.modify-calendar-days .muted {
  color: #ccd5df;
}

.modify-calendar-days .selected {
  background: #174fc4;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(23, 79, 196, 0.28);
}

.modify-calendar-days .in-range {
  background: #dce4ef;
}

.modify-calendar-days .range-end::after {
  content: "";
  position: absolute;
  top: -6px;
  right: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
}

.modify-selected-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 18px;
}

.modify-selected-dates article {
  padding: 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #c4c5d533;
}

.modify-selected-dates span,
.modify-select-row label > span {
  display: block;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modify-selected-dates strong {
  display: block;
  margin-top: 6px;
  color: #191c1e;
  font-size: 14px;
  font-weight: 600;
}

.modify-selected-dates article:nth-child(2) strong {
  color: #0e3fad;
}

.modify-select-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.modify-select-row label {
  display: grid;
  gap: 10px;
}

.modify-select-row button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 0;
  border-radius: 16px;
  background: #f2f4f7;
  color: #191c1e;
  cursor: pointer;
  border: 1px solid #00000000;
}

.modify-select-row strong {
  font-size: 14px;
  font-weight: 600;
}

.modify-select-row svg {
  width: 22px;
  height: 22px;
}

.modify-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 400;
}

.modify-alert[hidden] {
  display: none;
}

.modify-alert svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.modify-alert.warning {
  background: #ffdad64d;
  color: #ba1a1a;
}

.modify-alert.danger {
  border: 1px solid #ecc8c8;
  background: #ffdad64d;
  color: #ba1a1a;
}

.modify-alert.danger svg {
  padding: 3px;
  border-radius: 50%;
  background: #ba1a1a;
  color: #ffffff;
}

.modify-alert.success {
  border: 1px solid #a9e5b8;
  background: #d9f9df;
  color: #075d2a;
  font-weight: 600;
}

.modify-alert.success svg {
  padding: 3px;
  border-radius: 50%;
  background: #075d2a;
  color: #ffffff;
}

.modify-review-side {
  display: grid;
  align-content: start;
  gap: 20px;
  padding-left: 24px;
  border-left: 1px solid #dde4ee;
}

.modify-booking-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid #e6e8eb;
  border-radius: 16px;
  background: #f2f4f7;
}

.modify-booking-box.is-new {
  border: 2px solid #002a8133;
  background: #ffffff;
  box-shadow: 0 2px 0 rgba(22, 78, 196, 0.08);
}

.modify-booking-box span {
  display: block;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.modify-booking-box.is-new span {
  color: #164ec4;
}

.modify-booking-box strong {
  display: block;
  margin-top: 10px;
  color: #191c1e;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 700;
}

.modify-booking-box small {
  display: block;
  margin-top: 4px;
  color: #444653;
  font-size: 12px;
}

.modify-booking-box b {
  color: #191c1e;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.modify-booking-box.is-new b {
  color: #164ec4;
}

.modify-price-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 20px;
  min-height: 148px;
  margin-top: 30px;
  padding: 24px;
  border-radius: 28px;
  background: #0e3fad;
  color: #ffffff;
}

.modify-price-box span {
  color: #d9e5ff;
  font-size: 12px;
}

.modify-price-box strong {
  font-size: 20px;
  font-weight: 800;
}

.modify-price-box small {
  grid-column: 1 / -1;
  color: #ffffff;
  font-size: 12px;
  font-style: italic;
  line-height: 1.45;
}

.modify-review-step {
  padding-bottom: 28px;
}

.modify-confirm-step {
  text-align: center;
}

.modify-confirm-art {
  position: relative;
  width: min(100%, 470px);
  height: 280px;
  margin: 12px auto 16px;
}

.modify-confirm-copy h3 {
  margin: 0;
  color: #20242b;
  font-size: 22px;
  font-weight: 900;
}

.modify-confirm-copy p {
  margin: 8px 0 0;
  color: #4f5968;
  font-size: 15px;
}

.modify-shortage {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #ffdad680;
  color: #ba1a1a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.modify-shortage svg {
  width: 18px;
  height: 18px;
  color: #fff;
  fill: #ba1a1a;
}

.modify-compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.modify-compare-card {
  position: relative;
  min-height: 390px;
  padding: 24px;
  border: 1px solid #c4c5d533;
  border-radius: 16px;
  background: #ffffff;
}

.modify-compare-card.updated {
  border: 2px solid #c2cfe7;
  background: #f3f6fb;
}

.modify-compare-card > b {
  position: absolute;
  top: -13px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 16px;
  border-radius: 999px;
  background: #174fc4;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modify-compare-card > span {
  color: #747684;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modify-compare-card h3 {
  margin: 18px 0 16px;
  color: #191c1e;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 700;
}

.modify-compare-card dl {
  display: grid;
  gap: 16px;
  margin: 0 0 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid #edf1f6;
}

.modify-compare-card dl div {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 4px;
}

.modify-compare-card dt {
  display: contents;
  color: #596273;
  font-size: 14px;
}

.modify-compare-card dt svg {
  width: 18px;
  height: 18px;
  color: #6f7888;
}

.modify-compare-card.updated dt svg {
  color: #174fc4;
}

.modify-compare-card dd {
  grid-column: 2;
  margin: -2px 0 0;
  color: #191c1e;
  font-size: 14px;
  font-weight: 600;
}

.modify-compare-card mark {
  padding: 3px 8px;
  border-radius: 4px;
  color: #174fc4;
  background: #dfe8ff;
}

.modify-total span {
  display: block;
  color: #596273;
  font-size: 14px;
}

.modify-total strong {
  display: block;
  margin-top: 4px;
  color: #191c1e;
  font-size: 24px;
  font-weight: 700;
}

.modify-compare-card.updated .modify-total strong {
  color: #c8151d;
}

.modify-arrow {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #174fc4;
  box-shadow: 0 10px 24px rgba(22, 35, 64, 0.16);
}

.modify-arrow svg {
  width: 23px;
  height: 23px;
}

.modify-balance-card {
  display: grid;
  grid-template-columns: auto 28px auto minmax(260px, 0.72fr);
  align-items: center;
  gap: 28px;
  margin-top: 26px;
  padding: 24px 28px;
  border: 1px solid #e0e5ee;
  border-radius: 18px;
  background: #f3f5f9;
}

.modify-balance-card span,
.modify-due-box span {
  display: block;
  color: #c4c5d5;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.modify-balance-card strong {
  display: block;
  margin-top: 8px;
  color: #444653;
  font-size: 18px;
  font-weight: 600;
}

.modify-balance-card > svg {
  color: #c1c8d3;
}

.modify-due-box {
  justify-self: end;
  width: 100%;
  padding: 16px;
  border: 1px solid #ffb9b2;
  border-radius: 18px;
  background: #ffd9d4;
  color: #ba1a1a;
  text-align: right;
}

.modify-due-box span {
  color: #ba1a1a;
}

.modify-due-box strong {
  color: #ba1a1a;
  font-size: 22px;
}

.modify-policy-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.modify-policy-row p {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  color: #555f70;
  font-size: 14px;
  line-height: 1.45;
}

.modify-policy-row svg {
  width: 20px;
  height: 20px;
  color: #4b5563;
}

.modify-booking-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 32px;
  border-top: 1px solid #e2e7ef;
  background: #ffffff;
}

.modify-booking-footer button {
  padding: 16px 32px;
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.modify-back-btn,
.modify-cancel-btn {
  padding: 0 34px;
  background: transparent;
  color: #4b5563;
}

.modify-cancel-btn,
.modify-secondary-btn,
.modify-booking-return {
  display: none;
}

.modify-primary-btn {
  min-width: 250px;
  padding: 0 34px;
  background: #174fc4;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(23, 79, 196, 0.28);
}

.modify-secondary-btn {
  min-width: 170px;
  background: #e6e8eb;
  color: #191c1e;
}

.modify-booking-return {
  align-items: center;
  justify-content: center;
  min-width: 250px;
  padding: 16px;
  border-radius: 8px;
  background: #0e3fad;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(23, 79, 196, 0.28);
}

.modify-booking-modal.is-reviewing .modify-back-btn {
  display: none;
}

.modify-booking-modal.is-reviewing .modify-cancel-btn,
.modify-booking-modal.is-reviewing .modify-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modify-booking-modal.is-reviewing .modify-primary-btn {
  min-width: 260px;
}

.modify-booking-modal.is-confirming .modify-back-btn,
.modify-booking-modal.is-confirming .modify-cancel-btn,
.modify-booking-modal.is-confirming .modify-secondary-btn,
.modify-booking-modal.is-confirming .modify-primary-btn {
  display: none;
}

.modify-booking-modal.is-confirming .modify-booking-footer {
  justify-content: flex-end;
}

.modify-booking-modal.is-confirming .modify-booking-return {
  display: inline-flex;
}

.cancel-booking-dialog {
  position: relative;
  width: min(100%, 600px);
  max-height: min(94vh, 760px);
  overflow: hidden auto;
  border-radius: 12px;
  background: #ffffff;
  color: #20242b;
  box-shadow: 0 26px 82px rgba(0, 0, 0, 0.24);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.22s ease;
}

.cancel-booking-modal.is-open .cancel-booking-dialog {
  transform: translateY(0) scale(1);
}

.cancel-booking-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 40px;
  margin: 24px auto 8px;
  border-radius: 999px;
  background: #ffdad6;
  color: #cc0004;
}

.cancel-booking-icon svg {
  width: 22px;
  height: 22px;
}

.cancel-booking-head {
  padding: 0 24px 20px;
  text-align: center;
  border-bottom: 1px solid #c4c5d51a;
}

.cancel-booking-head h2 {
  margin: 0;
  color: #20242b;
  font-size: 24px;
  font-weight: 700;
}

.cancel-booking-head p {
  margin: 4px 0 0;
  color: #444653;
  font-size: 16px;
}

.cancel-booking-summary {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 20px 28px;
  padding: 18px;
  border: 1px solid #e1e6ee;
  border-radius: 12px;
  background: #f0f2f6;
}

.cancel-booking-summary img {
  width: 70px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
}

.cancel-booking-summary h3 {
  margin: 0;
  color: #002a81;
  font-size: 18px;
  font-weight: 700;
}

.cancel-booking-summary p {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 8px 0 0;
  color: #444653;
  font-size: 14px;
}

.cancel-booking-summary span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cancel-booking-summary svg {
  width: 13px;
  height: 13px;
}

.cancel-booking-summary b {
  align-self: start;
  padding: 4px 8px;
  border-radius: 999px;
  background: #e0e3e6;
  color: #444653;
  font-size: 10px;
  font-weight: 600;
}

.cancel-warning {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 28px 18px;
  padding: 16px;
  border: 1px solid #ba1a1a1a;
  border-radius: 16px;
  background: #ffdad64d;
  color: #cc0004;
  font-size: 14px;
  font-weight: 600;
}

.cancel-warning svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
  fill: #cc0004;
}

.cancel-policy-list {
  display: grid;
  gap: 10px;
  margin: 0 28px 22px;
}

.cancel-policy-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #444653;
  font-size: 14px;
}

.cancel-policy-list svg {
  width: 14px;
  height: 14px;
  color: #00551f;
}

.cancel-policy-list p + p svg {
  color: #6b7280;
}

.cancel-reason-block {
  margin: 0 28px 20px;
}

.cancel-reason-block h3 {
  margin: 0 0 12px;
  color: #191c1e;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cancel-reason-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cancel-reason-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #c4c5d533;
  border-radius: 8px;
  color: #444653;
  font-size: 14px;
}

.cancel-reason-grid input {
  width: 14px;
  height: 14px;
  accent-color: #174fc4;
}

.cancel-reason-block textarea {
  width: 100%;
  min-height: 84px;
  margin-top: 12px;
  padding: 16px;
  resize: vertical;
  border: 1px solid #c4c5d533;
  border-radius: 12px;
  background: #f2f4f7;
  color: #20242b;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.cancel-booking-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 24px;
  background: #f2f4f7;
}

.cancel-booking-actions button {
  border: 0;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.cancel-booking-actions button:first-child {
  background: #e0e3e6;
  color: #191c1e;
}

.cancel-booking-actions .danger {
  background: #cc0004;
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(223, 0, 18, 0.22);
}

.refund-details-dialog {
  position: relative;
  width: min(100%, 650px);
  max-height: min(94vh, 604px);
  overflow: hidden auto;
  padding: 27px 27px 26px;
  border-radius: 7px;
  background: #ffffff;
  color: #20242b;
  box-shadow: 0 26px 82px rgba(0, 0, 0, 0.24);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.22s ease;
}

.refund-details-modal.is-open .refund-details-dialog {
  transform: translateY(0) scale(1);
}

.refund-details-close {
  position: absolute;
  top: 22px;
  right: 21px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #172131;
  cursor: pointer;
}

.refund-details-close svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.refund-details-head {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  padding-right: 36px;
}

.refund-brand-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e5ebff;
  color: #164ec4;
}

.refund-brand-icon svg {
  width: 18px;
  height: 18px;
}

.refund-details-head strong {
  display: block;
  margin: 7px 0 13px;
  color: #0e3fad;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.refund-details-head h2 {
  margin: 0;
  color: #20242b;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 700;
}

.refund-details-head p {
  margin: 4px 0 0;
  color: #444653;
  font-size: 14px;
  line-height: 1.25;
}

.refund-breakdown-card {
  margin-top: 22px;
  padding: 24px 22px 20px;
  border-radius: 7px;
  background: #f0f2f6;
}

.refund-breakdown-card dl {
  display: grid;
  gap: 19px;
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid #e2e6ed;
}

.refund-breakdown-card dl div,
.refund-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.refund-breakdown-card dt,
.refund-breakdown-card dd {
  margin: 0;
  font-size: 16px;
}

.refund-breakdown-card dt {
  color: #444653;
  font-weight: 500;
}

.refund-breakdown-card dd {
  color: #191c1e;
  font-weight: 600;
}

.refund-breakdown-card dd.is-fee {
  color: #ba1a1a;
  font-size: 18px;
}

.refund-total-row {
  margin-top: 18px;
}

.refund-total-row span {
  display: block;
  color: #0e3fad;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.refund-total-row strong {
  display: block;
  margin-top: 5px;
  color: #078814;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.refund-total-row b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  background: #23d35c1a;
  color: #078814;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.refund-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 22px;
}

.refund-info-grid article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
}

.refund-info-grid article > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #e6e8eb;
  color: #0e3fad;
}

.refund-info-grid svg {
  width: 16px;
  height: 16px;
}

.refund-info-grid strong {
  display: block;
  color: #191c1e;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}

.refund-info-grid p {
  margin: 4px 0 0;
  color: #444653;
  font-size: 12px;
  line-height: 1.35;
}

.refund-note {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: 18px;
  padding: 16px 15px;
  border-radius: 8px;
  background: #fff0f0;
  color: #20242b;
}

.refund-note svg {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: #ba1a1a;
}

.refund-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.refund-details-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 102px;
  gap: 11px;
  margin-top: 32px;
}

.refund-details-actions button {
  padding: 16px;
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.refund-confirm-btn {
  background: #0e3fad;
  color: #ffffff;
  box-shadow: 0 10px 17px rgba(23, 79, 196, 0.24);
}

.refund-details-actions button:last-child {
  background: #e6e8eb;
  color: #191c1e;
}

.refund-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 26px 0 0;
  color: #191c1e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.refund-secure-note svg {
  width: 12px;
  height: 12px;
}

@media (max-width: 1180px) {
  .hotel-booking-grid {
    grid-template-columns: 1fr;
  }

  .hotel-booking-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-manage-card {
    grid-column: 1 / -1;
  }

  .modify-booking-dialog {
    width: min(100%, 860px);
  }

  .modify-date-grid {
    grid-template-columns: 1fr;
  }

  .modify-review-side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0;
    border-left: 0;
  }

  .modify-review-side h3 {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .modify-price-box {
    margin-top: 0;
  }

  .modify-compare-grid {
    grid-template-columns: 1fr;
  }

  .modify-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .modify-balance-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .modify-due-box {
    justify-self: stretch;
    max-width: none;
    text-align: left;
  }

  .modify-policy-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hotel-booking-hero {
    grid-template-columns: 30px 58px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
  }

  .hotel-booking-thumb {
    width: 58px;
    height: 58px;
  }

  .hotel-invoice-btn {
    grid-column: 2 / -1;
    width: 100%;
    min-width: 0;
  }

  .hotel-mini-grid,
  .hotel-booking-side {
    grid-template-columns: 1fr;
  }

  .hotel-amenities-card div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modify-booking-modal {
    align-items: end;
    padding: 0;
  }

  .modify-booking-backdrop,
  .cancel-booking-backdrop,
  .refund-details-backdrop {
    background: rgba(8, 10, 14, 0.62);
  }

  .modify-booking-dialog,
  .cancel-booking-dialog,
  .refund-details-dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
  }

  .modify-booking-modal.is-open .modify-booking-dialog,
  .cancel-booking-modal.is-open .cancel-booking-dialog,
  .refund-details-modal.is-open .refund-details-dialog {
    transform: translateY(0);
  }

  .modify-booking-close {
    top: 18px;
    right: 18px;
  }

  .modify-booking-head {
    padding: 24px 24px 18px;
  }

  .modify-booking-head h2 {
    padding-right: 44px;
    font-size: 20px;
  }

  .modify-booking-head p {
    font-size: 13px;
  }

  .modify-stepper {
    padding: 0 24px 20px;
  }

  .modify-stepper div {
    gap: 12px;
  }

  .modify-stepper span {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .modify-stepper div::before {
    top: 14px;
  }

  .modify-stepper strong {
    font-size: 9px;
  }

  .modify-step {
    padding: 0 24px 22px;
  }

  .modify-calendar-card {
    padding: 20px 16px;
  }

  .modify-calendar-days button {
    width: 37px;
    height: 37px;
    font-size: 14px;
  }

  .modify-selected-dates,
  .modify-select-row,
  .modify-review-side {
    grid-template-columns: 1fr;
  }

  .modify-booking-box {
    min-height: 92px;
  }

  .modify-price-box {
    min-height: 112px;
    padding: 22px;
    border-radius: 20px;
  }

  .modify-review-step {
    padding-bottom: 20px;
  }

  .modify-compare-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .modify-compare-card h3 {
    font-size: 21px;
  }

  .modify-balance-card {
    padding: 22px;
  }

  .modify-due-box {
    padding: 18px;
  }

  .modify-due-box strong {
    font-size: 22px;
  }

  .modify-booking-footer {
    position: sticky;
    bottom: 0;
    min-height: auto;
    padding: 16px 24px calc(16px + env(safe-area-inset-bottom));
  }

  .modify-booking-footer button {
    font-size: 14px;
  }

  .modify-primary-btn {
    min-width: 0;
    flex: 1;
  }

  .modify-booking-modal.is-reviewing .modify-booking-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .modify-booking-modal.is-reviewing .modify-cancel-btn {
    grid-column: 1 / -1;
    justify-content: flex-start;
    min-height: 34px;
    padding: 0;
  }

  .modify-booking-modal.is-reviewing .modify-primary-btn,
  .modify-booking-modal.is-reviewing .modify-secondary-btn {
    min-width: 0;
    width: 100%;
  }

  .modify-confirm-art {
    height: 220px;
    margin-top: 0;
  }

  .modify-confirm-copy h3 {
    font-size: 20px;
  }

  .modify-booking-modal.is-confirming .modify-booking-footer {
    display: flex;
  }

  .modify-booking-return {
    width: 100%;
    min-width: 0;
    font-size: 14px;
  }

  .cancel-booking-modal,
  .refund-details-modal {
    align-items: end;
    padding: 0;
  }

  .cancel-booking-dialog,
  .refund-details-dialog {
    max-width: none;
  }

  .cancel-booking-summary {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .cancel-booking-summary b {
    grid-column: 2;
    justify-self: start;
  }

  .cancel-booking-actions {
    position: sticky;
    bottom: 0;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .refund-details-dialog {
    padding: 25px 24px calc(20px + env(safe-area-inset-bottom));
  }

  .refund-info-grid {
    gap: 16px;
  }

  .refund-details-actions {
    position: sticky;
    bottom: 0;
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: -20px;
    padding: 16px 24px calc(16px + env(safe-area-inset-bottom));
    background: #ffffff;
  }
}

@media (max-width: 560px) {
  .hotel-booking-content {
    padding-top: 16px;
  }

  .hotel-booking-hero {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .hotel-booking-thumb {
    grid-column: 1 / -1;
    width: 100%;
    height: 150px;
    border-radius: 16px;
  }

  .hotel-booking-title {
    grid-column: 1 / -1;
  }

  .hotel-booking-title > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hotel-invoice-btn {
    grid-column: 1 / -1;
  }

  .hotel-booking-grid,
  .hotel-booking-main,
  .hotel-booking-side {
    gap: 16px;
  }

  .hotel-card,
  .hotel-manage-card,
  .hotel-help-card {
    padding: 20px;
    border-radius: 18px;
  }

  .hotel-status-card,
  .hotel-stay-card,
  .hotel-guests-card,
  .hotel-amenities-card {
    min-height: 0;
  }

  .hotel-stay-dates,
  .hotel-refund-labels {
    grid-template-columns: 1fr;
  }

  .hotel-stay-dates div + div {
    padding: 16px 0 0;
    border-left: 0;
    border-top: 1px solid #edf2f8;
  }

  .hotel-stay-meta {
    grid-template-columns: 1fr;
  }

  .hotel-amenities-card div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hotel-refund-labels div,
  .hotel-refund-labels div:nth-child(2),
  .hotel-refund-labels div:last-child {
    text-align: left;
  }

  .modify-booking-head {
    padding: 22px 18px 16px;
  }

  .modify-stepper,
  .modify-step {
    padding-left: 18px;
    padding-right: 18px;
  }

  .modify-stepper {
    gap: 6px;
  }

  .modify-stepper strong {
    line-height: 1.2;
  }

  .modify-calendar-week span {
    font-size: 11px;
  }

  .modify-calendar-days button {
    width: 32px;
    height: 34px;
    font-size: 13px;
  }

  .modify-selected-dates article,
  .modify-select-row button {
    min-height: 62px;
  }

  .modify-selected-dates strong,
  .modify-select-row strong,
  .modify-alert {
    font-size: 12px;
  }

  .modify-alert {
    min-height: 48px;
    padding: 10px 14px;
  }

  .modify-review-side {
    gap: 16px;
  }

  .modify-booking-box {
    padding: 18px;
  }

  .modify-booking-box strong,
  .modify-booking-box b {
    font-size: 16px;
  }

  .modify-price-box {
    grid-template-columns: 1fr;
  }

  .modify-price-box strong {
    font-size: 24px;
  }

  .modify-shortage {
    align-items: flex-start;
    height: auto;
    padding: 9px 12px;
    font-size: 11px;
    line-height: 1.35;
  }

  .modify-compare-card > b {
    position: static;
    width: fit-content;
    margin-bottom: 18px;
  }

  .modify-compare-card h3 {
    margin: 18px 0 22px;
  }

  .modify-total strong {
    font-size: 25px;
  }

  .modify-booking-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .modify-back-btn {
    padding: 0 12px;
  }

  .cancel-booking-head,
  .cancel-booking-summary,
  .cancel-warning,
  .cancel-policy-list,
  .cancel-reason-block {
    margin-left: 18px;
    margin-right: 18px;
  }

  .cancel-booking-head {
    padding-left: 0;
    padding-right: 0;
  }

  .cancel-reason-grid,
  .cancel-booking-actions,
  .refund-info-grid,
  .refund-details-actions {
    grid-template-columns: 1fr;
  }

  .cancel-booking-actions {
    padding-left: 18px;
    padding-right: 18px;
  }

  .refund-details-dialog {
    padding-left: 18px;
    padding-right: 18px;
  }

  .refund-details-head {
    padding-right: 32px;
  }

  .refund-details-head h2 {
    font-size: 22px;
  }

  .refund-breakdown-card {
    padding: 20px 18px;
  }

  .refund-total-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .refund-details-actions {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .refund-details-actions button {
    min-height: 50px;
  }

  .refund-secure-note {
    line-height: 1.5;
    text-align: center;
  }
}
