/* ==========================================================================
   QuickTech Customer Dashboard — Shared Base Styles
   Used on every page. Class namespace: .quicktech-dashboard
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.quicktech-dashboard {
  --qtd-bg-1: #eaf3f430;
  --qtd-bg-2: #e3eef221;
  --qtd-white: #ffffff;
  --qtd-text-dark: #1c2733;
  --qtd-text-mid: #5b6b78;
  --qtd-text-light: #8a97a3;
  --qtd-border: #e7edf0;
  --qtd-blue: #2f7de1;
  --qtd-blue-bg: #e6f0fd;
  --qtd-teal: #1A6DF6;
  --qtd-teal-dark: #185a61;
  --qtd-green: #21a566;
  --qtd-green-bg: #e2f6ea;
  --qtd-purple-bg: #ece9fb;
  --qtd-purple: #6a5fd3;
  --qtd-peach-bg: #fdeae3;
  --qtd-peach: #e2734a;
  --qtd-radius-lg: 16px;
  --qtd-radius-md: 12px;
  --qtd-radius-sm: 8px;
  --qtd-shadow: 0 2px 10px rgba(28, 39, 51, 0.05);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--qtd-text-dark);
  min-height: 100vh;
  display: flex;
  background: linear-gradient(180deg, var(--qtd-bg-1) 0%, var(--qtd-bg-2) 100%);
}

.quicktech-dashboard * {
  box-sizing: border-box;
}

.quicktech-dashboard a {
  text-decoration: none;
  color: inherit;
}

.quicktech-dashboard button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

/* ---------- Sidebar ---------- */
.qtd-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--qtd-white);
  border-right: 1px solid var(--qtd-border);
  display: flex;
  flex-direction: column;
  padding: 28px 16px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.qtd-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  margin-bottom: 32px;
}

.qtd-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: conic-gradient(from 200deg, #2f7de1, #21c3a6, #2f7de1);
  flex-shrink: 0;
}

.qtd-logo-text {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--qtd-text-dark);
}

.qtd-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.qtd-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--qtd-radius-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--qtd-text-mid);
  transition: background 0.15s ease, color 0.15s ease;
}

.qtd-nav-item svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.qtd-nav-item:hover {
  background: #f3f6f8;
  color: var(--qtd-text-dark);
}

.qtd-nav-item.is-active {
  background: var(--qtd-blue-bg);
  color: var(--qtd-blue);
}

.qtd-nav-footer {
  border-top: 1px solid var(--qtd-border);
  padding-top: 14px;
  margin-top: 14px;
}

/* ---------- Main column ---------- */
.qtd-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 28px 36px 0;
}

.qtd-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.qtd-welcome {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qtd-welcome-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--qtd-white);
  box-shadow: 0 0 0 1px var(--qtd-border);
}

.qtd-welcome h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

.qtd-topbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.qtd-icon-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--qtd-white);
  border: 1px solid var(--qtd-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--qtd-text-mid);
}

.qtd-icon-btn svg {
  width: 18px;
  height: 18px;
}

.qtd-icon-btn .qtd-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e0473f;
  border: 1.5px solid var(--qtd-white);
}

.qtd-account {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--qtd-white);
  border: 1px solid var(--qtd-border);
  border-radius: 22px;
  padding: 5px 12px 5px 5px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.qtd-account img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.qtd-account svg {
  width: 14px;
  height: 14px;
  color: var(--qtd-text-light);
}

.qtd-account-menu {
  display: none;
  position: absolute;
  top: 46px;
  right: 0;
  background: var(--qtd-white);
  border: 1px solid var(--qtd-border);
  border-radius: var(--qtd-radius-sm);
  box-shadow: var(--qtd-shadow);
  min-width: 160px;
  padding: 6px;
  z-index: 20;
}

.qtd-account-menu.is-open {
  display: block;
}

.qtd-account-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--qtd-text-mid);
}

.qtd-account-menu a:hover {
  background: #f3f6f8;
  color: var(--qtd-text-dark);
}

/* ---------- Page heading (used on non-dashboard pages) ---------- */
.qtd-page-head {
  margin-bottom: 22px;
}

.qtd-page-head h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.qtd-page-head p {
  margin: 0;
  font-size: 14px;
  color: var(--qtd-text-mid);
}

/* ---------- Card shell (shared by every page) ---------- */
.qtd-card {
  background: var(--qtd-white);
  border-radius: var(--qtd-radius-lg);
  box-shadow: var(--qtd-shadow);
  padding: 22px;
}

.qtd-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.qtd-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qtd-card-title h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.qtd-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qtd-card-icon svg {
  width: 18px;
  height: 18px;
}

.qtd-icon-blue { background: var(--qtd-blue-bg); color: var(--qtd-blue); }
.qtd-icon-green { background: var(--qtd-green-bg); color: var(--qtd-green); }
.qtd-icon-purple { background: var(--qtd-purple-bg); color: var(--qtd-purple); }
.qtd-icon-peach { background: var(--qtd-peach-bg); color: var(--qtd-peach); }

.qtd-link-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--qtd-text-mid);
  display: flex;
  align-items: center;
  gap: 4px;
}

.qtd-link-btn.qtd-outline {
  border: 1px solid var(--qtd-border);
  border-radius: 20px;
  padding: 6px 14px;
  background: var(--qtd-white);
}

.qtd-link-btn:hover {
  color: var(--qtd-blue);
}

/* ---------- Dashboard grid ---------- */
.qtd-dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-bottom: 28px;
}

/* Booking card */
.qtd-booking-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--qtd-border);
  border-radius: var(--qtd-radius-md);
  padding: 14px 16px;
  margin-bottom: 14px;
}

.qtd-booking-dest {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qtd-booking-dest .qtd-plane-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--qtd-blue-bg);
  color: var(--qtd-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qtd-booking-dest .qtd-plane-icon svg {
  width: 16px;
  height: 16px;
}

.qtd-booking-dest strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.qtd-booking-dest span {
  font-size: 12.5px;
  color: var(--qtd-text-light);
}

.qtd-booking-meta {
  text-align: left;
}

.qtd-booking-meta .qtd-label {
  font-size: 12px;
  color: var(--qtd-text-light);
  margin-bottom: 2px;
}

.qtd-booking-meta .qtd-value {
  font-size: 14px;
  font-weight: 600;
}

.qtd-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--qtd-green);
}

.qtd-status svg {
  width: 14px;
  height: 14px;
}

.qtd-booking-more {
  color: var(--qtd-text-light);
  padding: 4px;
}

.qtd-booking-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qtd-booking-footer .qtd-label {
  font-size: 13px;
  color: var(--qtd-text-mid);
}

.qtd-btn-primary {
  background: var(--qtd-teal);
  color: var(--qtd-white);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 9px;
}

.qtd-btn-primary:hover {
  background: var(--qtd-teal-dark);
}

/* Recent activity */
.qtd-activity-list {
  display: flex;
  flex-direction: column;
}

.qtd-activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--qtd-border);
}

.qtd-activity-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.qtd-activity-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qtd-activity-icon svg {
  width: 16px;
  height: 16px;
}

.qtd-activity-text {
  flex: 1;
  min-width: 0;
}

.qtd-activity-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.qtd-activity-text span {
  font-size: 12.5px;
  color: var(--qtd-text-light);
}

.qtd-activity-time {
  font-size: 12.5px;
  color: var(--qtd-text-light);
  white-space: nowrap;
}

/* Exclusive offers */
.qtd-offers-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.qtd-offer-card {
  flex: 0 0 190px;
}

.qtd-offer-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: var(--qtd-radius-md);
  margin-bottom: 8px;
  display: block;
}

.qtd-offer-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.qtd-offer-card .qtd-offer-sub {
  font-size: 12.5px;
  color: var(--qtd-text-light);
  margin: 2px 0 4px;
}

.qtd-offer-card .qtd-offer-price {
  font-size: 12.5px;
  font-weight: 600;
}

.qtd-offer-price em {
  font-style: normal;
  color: var(--qtd-text-light);
  font-weight: 500;
}

/* Profile & settings list */
.qtd-settings-list {
  display: flex;
  flex-direction: column;
}

.qtd-settings-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--qtd-border);
  font-size: 14px;
  font-weight: 500;
  color: var(--qtd-text-dark);
}

.qtd-settings-item:last-child {
  border-bottom: none;
}

.qtd-settings-item svg:first-child {
  width: 17px;
  height: 17px;
  color: var(--qtd-text-mid);
}

.qtd-settings-item span {
  flex: 1;
}

.qtd-settings-item .qtd-chevron {
  width: 15px;
  height: 15px;
  color: var(--qtd-text-light);
}

.qtd-settings-item:hover {
  cursor: pointer;
}

.qtd-settings-item:hover span {
  color: var(--qtd-blue);
}

/* ---------- Footer ---------- */
.qtd-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(28, 39, 51, 0.06);
}

.qtd-footer-links {
  display: flex;
  gap: 22px;
  font-size: 13.5px;
  color: var(--qtd-text-mid);
  font-weight: 500;
}

.qtd-footer-links a:hover {
  color: var(--qtd-text-dark);
}

.qtd-footer-social {
  display: flex;
  gap: 10px;
}

.qtd-footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #9aa7b0;
  color: var(--qtd-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qtd-footer-social svg {
  width: 15px;
  height: 15px;
}

/* ---------- Mobile menu toggle + drawer overlay ---------- */
.qtd-menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--qtd-white);
  border: 1px solid var(--qtd-border);
  align-items: center;
  justify-content: center;
  color: var(--qtd-text-dark);
  margin-right: 2px;
  order: -1;
}

.qtd-menu-toggle svg {
  width: 19px;
  height: 19px;
}

.qtd-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 31, 0.45);
  z-index: 40;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.qtd-drawer-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* ---------- Responsive ---------- */

/* Tablet: sidebar becomes an off-canvas drawer, dashboard grid goes single column */
@media (max-width: 980px) {
  .qtd-dash-grid {
    grid-template-columns: 1fr;
  }

  .qtd-menu-toggle {
    display: flex;
  }

  .qtd-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    max-width: 82vw;
    z-index: 50;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  .qtd-sidebar.is-open {
    transform: translateX(0);
    box-shadow: 8px 0 24px rgba(15, 23, 31, 0.18);
  }

  .qtd-main {
    padding: 20px 24px 0;
  }
}


  .qtd-logo a img{
  height: 50px !important;
  padding: 3px;
  }


/* Mobile: tighter spacing, stacked topbar actions, narrower cards */
@media (max-width: 640px) {
  .qtd-card-head {
	display: flex;
	align-items: self-start !important;
	justify-content: left !important;
	margin-bottom: 18px !important;
	flex-direction: column !important;
	gap: 12px !important;
}

  .qtd-main {
    padding: 16px 16px 0;
  }

  .qtd-topbar {
    align-items: flex-start;
  }

  .qtd-welcome h1 {
    font-size: 11px;
  }

  .qtd-welcome-avatar {
    width: 40px;
    height: 40px;
  }

  .qtd-topbar-actions {
    gap: 10px;
  }

  .qtd-account-label {
    display: none;
  }

  .qtd-account {
    padding-right: 8px;
  }

  .qtd-card {
    padding: 16px;
  }

  .qtd-booking-row {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .qtd-booking-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .qtd-btn-primary {
    width: 100%;
    text-align: center;
  }

  .qtd-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .qtd-footer-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}
/* Flights page — extends customerdashboard.css */
.qtf-search-card { margin-bottom: 20px; }

.qtf-search-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.qtf-field { display: flex; flex-direction: column; gap: 6px; }
.qtf-field label { font-size: 12.5px; color: var(--qtd-text-mid); font-weight: 600; }
.qtf-field input {
  border: 1px solid var(--qtd-border);
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--qtd-text-dark);
}
.qtf-field input:focus { outline: 2px solid var(--qtd-blue); outline-offset: 1px; }
.qtf-search-btn { height: 41px; white-space: nowrap; }

.qtf-results-card { margin-bottom: 28px; }

.qtf-tabs { display: flex; gap: 6px; }
.qtf-tab {
  background: transparent;
  border: 1px solid var(--qtd-border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--qtd-text-mid);
}
.qtf-tab.is-active { background: var(--qtd-blue-bg); color: var(--qtd-blue); border-color: transparent; }

.qtf-flight-list { display: flex; flex-direction: column; gap: 12px; }
.qtf-flight-row {
  display: grid;
  grid-template-columns: 140px 1fr auto auto;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--qtd-border);
  border-radius: var(--qtd-radius-md);
  padding: 14px 16px;
}

.qtf-flight-airline { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; }
.qtf-airline-dot { width: 9px; height: 9px; border-radius: 50%; }
.qtf-flight-route { font-size: 14px; }
.qtf-flight-route span { color: var(--qtd-text-light); margin: 0 4px; }
.qtf-flight-sub { font-size: 12.5px; color: var(--qtd-text-light); margin-top: 2px; }
.qtf-flight-price { font-size: 17px; font-weight: 700; }

@media (max-width: 700px) {
.qtf-search-form { grid-template-columns: 1fr !important; }

}
@media (max-width: 900px) {
  .qtf-search-form { grid-template-columns: 1fr 1fr; }
  .qtf-flight-row { grid-template-columns: 1fr; text-align: left; }
}
/* Tours page — extends customerdashboard.css */
.qtt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 28px;
}
.qtt-card { padding: 0; overflow: hidden; }
.qtt-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.qtt-body { padding: 18px 20px 20px; }
.qtt-head-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.qtt-head-row strong { font-size: 16px; }
.qtt-price { font-weight: 700; color: var(--qtd-teal); }
.qtt-body p { font-size: 13.5px; color: var(--qtd-text-mid); margin: 0 0 14px; line-height: 1.5; }

@media (max-width: 900px) {
  .qtt-grid { grid-template-columns: 1fr; }
}
/* Hotels page — extends customerdashboard.css */
.qth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 28px;
}
.qth-card { padding: 0; overflow: hidden; }
.qth-card img { width: 100%; height: 150px; object-fit: cover; display: block; }
.qth-body { padding: 16px 18px 18px; }
.qth-head-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px; }
.qth-head-row strong { font-size: 15px; }
.qth-rating { font-size: 13px; font-weight: 600; color: #e0a52c; }
.qth-loc { font-size: 12.5px; color: var(--qtd-text-light); display: block; margin-bottom: 12px; }
.qth-foot-row { display: flex; align-items: center; justify-content: space-between; }
.qth-price { font-weight: 700; font-size: 14px; }
.qth-price em { font-style: normal; color: var(--qtd-text-light); font-weight: 500; font-size: 12px; }

@media (max-width: 980px) {
  .qth-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .qth-grid { grid-template-columns: 1fr; }
}
/* Bookings page — extends customerdashboard.css */
.qtb-card { margin-bottom: 28px; }

.qtb-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.qtb-table th {
  text-align: left;
  color: var(--qtd-text-light);
  font-weight: 600;
  font-size: 12.5px;
  padding: 10px 8px;
  border-bottom: 1px solid var(--qtd-border);
}
.qtb-table td {
  padding: 14px 8px;
  border-bottom: 1px solid var(--qtd-border);
  color: var(--qtd-text-dark);
}
.qtb-table tr:last-child td { border-bottom: none; }

.qtb-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.qtb-green { background: var(--qtd-green-bg); color: var(--qtd-green); }
.qtb-grey { background: #eef1f3; color: var(--qtd-text-mid); }
.qtb-red { background: #fde9e8; color: #d1443b; }

@media (max-width: 760px) {
  .qtb-table { display: block; overflow-x: auto; }
}
/* Payments page — extends customerdashboard.css */
.qtp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-bottom: 28px;
}

.qtp-card-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--qtd-border);
  border-radius: var(--qtd-radius-md);
  margin-bottom: 12px;
}
.qtp-card-item:last-child { margin-bottom: 0; }

.qtp-card-brand {
  width: 44px;
  height: 30px;
  border-radius: 6px;
  background: #1a3a8f;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qtp-brand-mc { background: #d1443b; }

.qtp-card-info { flex: 1; }
.qtp-card-info strong { display: block; font-size: 14px; letter-spacing: 0.03em; }
.qtp-card-info span { font-size: 12.5px; color: var(--qtd-text-light); }

@media (max-width: 900px) {
  .qtp-grid { grid-template-columns: 1fr; }
}
/* Support page — extends customerdashboard.css */
.qts-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  padding-bottom: 28px;
  align-items: start;
}

.qts-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--qtd-border);
  padding: 14px 4px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  color: var(--qtd-text-dark);
}
.qts-faq-q .qtd-chevron { transition: transform 0.15s ease; height: 20px}
.qts-faq-q.is-open .qtd-chevron { transform: rotate(180deg); height: 20px; }

.qts-faq-a {
  display: none;
  font-size: 13.5px;
  color: var(--qtd-text-mid);
  line-height: 1.6;
  padding: 4px 4px 16px;
  border-bottom: 1px solid var(--qtd-border);
}

.qts-form { display: flex; flex-direction: column; gap: 8px; }
.qts-form label { font-size: 12.5px; font-weight: 600; color: var(--qtd-text-mid); margin-top: 6px; }
.qts-form input, .qts-form textarea {
  border: 1px solid var(--qtd-border);
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
}
.qts-form input:focus, .qts-form textarea:focus { outline: 2px solid var(--qtd-blue); outline-offset: 1px; }
.qts-form button { margin-top: 10px; align-self: flex-start; }

@media (max-width: 900px) {
  .qts-grid { grid-template-columns: 1fr; }
}
