:root {
  color-scheme: light;
  --ink: #1f2933;
  --invoice-ink: #111111;
  --muted: #667085;
  --invoice-muted: #4f4f4f;
  --line: #d9e0e8;
  --invoice-line: #1b1b1b;
  --panel: #ffffff;
  --page: #f3f6f8;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --skaaba-blue: #26278a;
  --skaaba-gold: #c2b64b;
  --gold: #b7791f;
  --danger: #b42318;
  --shadow: 0 18px 44px rgba(31, 41, 51, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
}

body:not(.logged-in) .app-shell {
  display: none;
}

.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(194, 182, 75, 0.12)),
    var(--page);
}

body.logged-in .login-screen {
  display: none;
}

.login-card {
  width: min(100%, 420px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.login-card h1 {
  margin-bottom: 12px;
}

.login-card .primary-action {
  width: 100%;
  margin-top: 16px;
}

.login-error {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--danger);
  font-weight: 800;
}

.credential-box {
  display: grid;
  gap: 5px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  color: var(--muted);
  font-size: 12px;
}

.credential-box strong {
  color: var(--ink);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

input,
textarea,
select,
button {
  -webkit-tap-highlight-color: transparent;
}

.app-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(540px, 660px);
  gap: 20px;
  min-height: 100vh;
  padding: 20px;
}

.workspace,
.preview-column {
  min-width: 0;
}

.topbar,
.summary-strip,
.dashboard-panel,
.panel,
.line-items-section,
.upload-panel,
.invoice-preview,
.history-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 17px;
}

.top-actions,
.section-heading,
.two-column {
  display: flex;
  gap: 10px;
}

.top-actions,
.section-heading {
  align-items: center;
  justify-content: space-between;
}

.top-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.user-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 7px;
  background: #f6f7e7;
  color: var(--accent-dark);
  font-weight: 900;
}

.admin-panel-shortcut {
  background: #b7791f;
}

.admin-panel-shortcut:hover {
  background: #8a5b17;
}

body.employee-role [data-admin-only] {
  display: none;
}

.panel-highlight {
  outline: 4px solid rgba(183, 121, 31, 0.35);
  box-shadow: 0 0 0 8px rgba(183, 121, 31, 0.12), var(--shadow);
}

.primary-action,
.ghost-button,
.icon-button {
  border: 0;
  border-radius: 7px;
  min-height: 40px;
  font-weight: 800;
}

.primary-action {
  background: var(--accent);
  color: white;
  padding: 0 15px;
}

.primary-action:hover {
  background: var(--accent-dark);
}

.ghost-button {
  background: #e8f3f1;
  color: var(--accent-dark);
  padding: 0 13px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 40px;
  background: #edf1f5;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.remove-item {
  color: var(--danger);
  font-size: 20px;
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 16px 0;
  overflow: hidden;
  border-radius: 8px;
}

.summary-strip div {
  min-width: 0;
  padding: 16px;
  background: #fbfcfd;
}

.summary-strip span,
.bill-grid span,
.totals-box span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.summary-strip strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.dashboard-panel {
  margin-bottom: 16px;
}

.dashboard-filter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: end;
  margin-top: 12px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  margin-top: 14px;
  overflow: hidden;
}

.dashboard-grid div {
  min-width: 0;
  background: #fbfcfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.dashboard-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-grid strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.15;
  overflow-wrap: anywhere;
  white-space: normal;
}

.payment-update {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin-top: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.panel,
.dashboard-panel,
.line-items-section,
.upload-panel,
.invoice-preview,
.history-panel {
  border-radius: 8px;
  padding: 16px;
}

label {
  display: grid;
  gap: 7px;
  margin-top: 13px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #c9d3df;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 11px;
  outline: none;
}

.password-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: stretch;
}

.password-control input {
  border-radius: 6px 0 0 6px;
}

.password-toggle {
  border: 1px solid #c9d3df;
  border-left: 0;
  border-radius: 0 6px 6px 0;
  background: #f6f9fb;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.password-toggle.is-visible {
  background: #e8f3f1;
  color: var(--accent-dark);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.13);
}

.two-column {
  align-items: start;
}

.two-column label {
  flex: 1;
}

.credential-table {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.credential-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 10px;
}

.credential-head {
  align-items: center;
  background: #f4f7fa;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.credential-row strong {
  color: var(--accent-dark);
  font-size: 15px;
}

.credential-row label {
  margin-top: 0;
}

.line-items-section {
  margin-top: 16px;
}

.line-items-section .section-heading {
  align-items: center;
}

.line-items-section .section-heading h2 {
  font-size: 22px;
}

.upload-panel {
  margin-bottom: 16px;
}

.upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.file-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0;
  border-radius: 7px;
  background: var(--accent);
  color: #ffffff;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 900;
}

.file-button input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-status {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.upload-table-wrap {
  max-height: 280px;
}

.upload-table {
  min-width: 1020px;
  table-layout: fixed;
}

.upload-table th,
.upload-table td {
  font-size: 13px;
}

.upload-table th:nth-child(1),
.upload-table td:nth-child(1),
.upload-table th:nth-child(3),
.upload-table td:nth-child(3) {
  width: 17%;
}

.upload-table th:nth-child(2),
.upload-table td:nth-child(2) {
  width: 12%;
}

.upload-table th:nth-child(4),
.upload-table td:nth-child(4),
.upload-table th:nth-child(5),
.upload-table td:nth-child(5) {
  width: 11%;
}

.upload-table th:nth-child(6),
.upload-table td:nth-child(6),
.upload-table th:nth-child(9),
.upload-table td:nth-child(9) {
  width: 10%;
}

.upload-table th:nth-child(7),
.upload-table td:nth-child(7),
.upload-table th:nth-child(8),
.upload-table td:nth-child(8) {
  width: 7%;
}

.upload-table th:nth-child(10),
.upload-table td:nth-child(10) {
  width: 72px;
}

.tiny-button {
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  background: #e8f3f1;
  color: var(--accent-dark);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 14px;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.line-items-section table {
  table-layout: fixed;
  min-width: 1180px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 10px 8px;
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

td input,
td select {
  min-width: 0;
}

.line-items-section td input,
.line-items-section td select {
  min-height: 42px;
}

.mobile-cell-label {
  display: none;
}

.line-items-section th:nth-child(1),
.line-items-section td:nth-child(1) {
  width: 10%;
}

.line-items-section th:nth-child(2),
.line-items-section td:nth-child(2) {
  width: 20%;
}

.line-items-section th:nth-child(3),
.line-items-section td:nth-child(3),
.line-items-section th:nth-child(4),
.line-items-section td:nth-child(4) {
  width: 12%;
}

.line-items-section th:nth-child(5),
.line-items-section td:nth-child(5) {
  width: 13%;
}

.line-items-section th:nth-child(6),
.line-items-section td:nth-child(6) {
  width: 11%;
}

.line-items-section th:nth-child(7),
.line-items-section td:nth-child(7),
.line-items-section th:nth-child(8),
.line-items-section td:nth-child(8) {
  width: 7%;
}

.line-items-section th:nth-child(9),
.line-items-section td:nth-child(9) {
  width: 10%;
}

.line-items-section th:nth-child(10),
.line-items-section td:nth-child(10) {
  width: 44px;
}

.line-items-section.transport-entry th:nth-child(4),
.line-items-section.transport-entry td:nth-child(4),
.line-items-section.transport-entry th:nth-child(8),
.line-items-section.transport-entry td:nth-child(8) {
  display: none;
}

.line-items-section.transport-entry table {
  min-width: 1040px;
}

.line-items-section.transport-entry th:nth-child(2),
.line-items-section.transport-entry td:nth-child(2) {
  width: 24%;
}

.line-items-section.transport-entry th:nth-child(3),
.line-items-section.transport-entry td:nth-child(3) {
  width: 14%;
}

.line-items-section.transport-entry th:nth-child(5),
.line-items-section.transport-entry td:nth-child(5) {
  width: 18%;
}

.preview-column {
  display: grid;
  align-content: start;
  gap: 16px;
  position: sticky;
  top: 20px;
  height: fit-content;
}

.invoice-preview {
  color: #172026;
}

.sk-invoice {
  background: #ffffff;
  color: var(--invoice-ink);
  box-shadow: 0 12px 32px rgba(31, 41, 51, 0.08);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.18;
}

.tax-title {
  margin: 0 0 8px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--invoice-ink);
  font-size: 21px;
  font-weight: 700;
  text-decoration: underline;
}

.sk-letterhead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 14px;
  border-bottom: 2px solid var(--invoice-line);
  padding-bottom: 12px;
}

.brand-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.invoice-logo {
  width: 112px;
  height: auto;
  border-left: 4px solid var(--skaaba-gold);
  background: var(--skaaba-blue);
  object-fit: contain;
}

.seller-block h3 {
  margin: 0;
  color: var(--invoice-ink);
  font-size: 18px;
  font-weight: 800;
}

.legal-name {
  display: block;
  margin-top: 2px;
  color: var(--invoice-ink);
  font-size: 12px;
  font-weight: 800;
}

.invoice-number-block {
  display: grid;
  align-content: start;
  gap: 4px;
  text-align: right;
}

.invoice-number-block span,
.buyer-guest-grid h4,
.hotel-date-grid span {
  color: var(--invoice-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.invoice-number-block strong {
  font-size: 13px;
}

.buyer-guest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 14px 0;
}

.buyer-guest-grid h4 {
  margin: 0 0 5px;
}

.buyer-guest-grid strong,
.hotel-date-grid strong {
  display: block;
}

.status-line {
  margin-top: 8px;
  font-weight: 800;
}

.sk-detail-table {
  margin-top: 10px;
  border-top: 1px solid #e5e5e5;
}

.sk-detail-table th,
.sk-detail-table td {
  padding: 9px 8px;
  font-size: 13px;
}

.sk-detail-table th,
.hotel-date-grid span,
.totals-box span {
  color: var(--invoice-muted);
}

.sk-detail-table th:last-child,
.sk-detail-table td:last-child {
  text-align: right;
}

.transport-invoice .sk-detail-table th:nth-child(4),
.transport-invoice .sk-detail-table td:nth-child(4),
.transport-invoice .hotel-date-grid {
  display: none;
}

.transport-invoice .invoice-logo {
  width: 92px;
}

.hotel-date-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.5fr 0.5fr;
  gap: 8px;
  border-bottom: 1px solid #e5e5e5;
  padding: 12px 0;
}

.hotel-date-grid div {
  min-width: 0;
}

.sk-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 16px;
  align-items: start;
  margin-top: 12px;
}

.sk-totals {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  max-width: none;
}

.invoice-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 16px;
}

.preview-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.invoice-preview p {
  white-space: pre-line;
}

.invoice-meta {
  display: grid;
  gap: 4px;
  min-width: 132px;
  text-align: right;
}

.invoice-meta span {
  color: var(--muted);
  font-size: 13px;
}

.bill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 18px 0;
}

.bill-grid strong {
  display: block;
  margin: 6px 0;
}

.bill-grid p,
.preview-notes,
.invoice-footer,
#previewAgencyMeta {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.preview-table th,
.preview-table td {
  padding: 9px 6px 9px 0;
  font-size: 13px;
}

.preview-table th:last-child,
.preview-table td:last-child {
  text-align: right;
}

.totals-box {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  margin-left: auto;
  max-width: 300px;
}

.totals-box div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.totals-box strong {
  white-space: nowrap;
}

.total-due {
  border-top: 2px solid var(--invoice-line);
  padding-top: 10px;
  font-size: 18px;
}

.preview-notes {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.amount-words {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.bank-box {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
  color: var(--invoice-muted);
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-line;
}

.bank-box strong {
  display: block;
  color: var(--invoice-ink);
  margin-bottom: 3px;
}

.invoice-footer {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-size: 12px;
}

.saved-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.bulk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}

.select-all,
.saved-check {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  font-weight: 800;
  color: var(--muted);
}

.select-all input,
.saved-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.saved-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px;
  background: #fbfcfd;
}

.download-body {
  background: #ffffff;
  padding: 24px;
}

.download-body .invoice-preview {
  max-width: 960px;
  margin: 0 auto;
}

.saved-card strong,
.saved-card span {
  display: block;
}

.saved-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.saved-actions {
  display: flex;
  gap: 6px;
}

.saved-actions button {
  width: 34px;
  min-height: 34px;
  font-size: 14px;
}

.empty-state {
  color: var(--muted);
  padding: 10px 0;
}

@media (max-width: 1320px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .preview-column {
    position: static;
  }
}

@media (max-width: 760px) {
  .app-shell {
    gap: 14px;
    padding: 10px;
  }

  .topbar,
  .section-heading,
  .two-column {
    align-items: stretch;
    flex-direction: column;
  }

  .top-actions {
    justify-content: flex-start;
  }

  .top-actions > * {
    flex: 1 1 auto;
  }

  .top-actions .icon-button {
    flex: 0 0 48px;
  }

  .primary-action,
  .ghost-button,
  .icon-button {
    min-height: 46px;
  }

  input,
  textarea,
  select {
    min-height: 46px;
    font-size: 16px;
  }

  .summary-strip,
  .dashboard-grid,
  .form-grid,
  .bill-grid {
    grid-template-columns: 1fr;
  }

  .credential-head {
    display: none;
  }

  .credential-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .payment-update {
    grid-template-columns: 1fr;
  }

  .dashboard-filter {
    grid-template-columns: 1fr;
  }

  .panel,
  .dashboard-panel,
  .line-items-section,
  .upload-panel,
  .invoice-preview,
  .history-panel {
    padding: 12px;
  }

  .line-items-section table {
    min-width: 0;
  }

  .line-items-section.transport-entry table {
    min-width: 0;
  }

  .upload-table {
    min-width: 920px;
  }

  .saved-card {
    grid-template-columns: auto 1fr;
  }

  .saved-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .invoice-head {
    flex-direction: column;
  }

  .invoice-meta {
    text-align: left;
  }

  .sk-letterhead,
  .buyer-guest-grid,
  .hotel-date-grid,
  .sk-bottom-grid {
    grid-template-columns: 1fr;
  }

  .invoice-number-block {
    text-align: left;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 24px;
  }

  .login-card {
    padding: 18px;
  }

  .topbar {
    padding: 14px;
  }

  .summary-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-strip strong,
  .dashboard-grid strong {
    font-size: 18px;
  }

  .sk-invoice {
    font-size: 11px;
  }

  .tax-title {
    font-size: 17px;
  }

  .brand-row {
    flex-direction: column;
  }

  .invoice-logo {
    width: 86px;
  }

  .sk-detail-table th,
  .sk-detail-table td {
    padding: 7px 5px;
    font-size: 11px;
  }

  .bulk-actions .ghost-button,
  .bulk-actions .primary-action {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .line-items-section .table-wrap {
    overflow: visible;
  }

  .line-items-section table,
  .line-items-section thead,
  .line-items-section tbody,
  .line-items-section tr,
  .line-items-section td {
    display: block;
    width: 100%;
  }

  .line-items-section thead {
    display: none;
  }

  .line-items-section tr {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfd;
    padding: 12px;
  }

  .line-items-section td,
  .line-items-section th {
    border-bottom: 0;
    padding: 0;
  }

  .line-items-section td {
    display: grid;
    gap: 6px;
  }

  .line-items-section td:nth-child(3),
  .line-items-section td:nth-child(4),
  .line-items-section td:nth-child(7),
  .line-items-section td:nth-child(8) {
    display: grid;
  }

  .line-items-section.transport-entry td:nth-child(4),
  .line-items-section.transport-entry td:nth-child(8) {
    display: none;
  }

  .line-items-section td:nth-child(10) {
    justify-items: end;
  }

  .line-items-section .remove-item {
    width: 46px;
  }

  .mobile-cell-label {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .item-subtotal {
    min-height: 42px;
    display: flex;
    align-items: center;
    font-size: 18px;
  }
}

@media print {
  body {
    background: #ffffff;
  }

  .workspace,
  .history-panel,
  .topbar,
  .summary-strip,
  .dashboard-panel {
    display: none;
  }

  .app-shell,
  .preview-column {
    display: block;
    padding: 0;
  }

  .preview-column {
    position: static;
  }

  .invoice-preview {
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 10mm;
    font-size: 11px;
  }

  .tax-title {
    font-size: 18px;
  }

  .sk-letterhead {
    grid-template-columns: 1fr 150px;
  }

  .seller-block h3 {
    font-size: 17px;
  }

  .buyer-guest-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hotel-date-grid {
    grid-template-columns: 1.4fr 1fr 1fr 0.5fr 0.5fr;
  }

  .sk-bottom-grid {
    grid-template-columns: 1fr 250px;
  }

  .preview-notes {
    display: none;
  }
}
