:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #f9fbfd;
  --line: #dfe5ee;
  --line-strong: #cbd5e1;
  --text: #18202a;
  --muted: #647082;
  --accent: #009a7b;
  --accent-soft: #dff7f1;
  --blue: #0b6ffb;
  --blue-soft: #e7f0ff;
  --amber: #b96b00;
  --amber-soft: #fff0d8;
  --red: #dd3131;
  --red-soft: #ffe7e7;
  --shadow: 0 16px 42px rgba(22, 33, 48, 0.08);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

button,
a,
select,
input,
textarea {
  outline-color: var(--blue);
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.app-shell {
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: stretch;
  gap: 24px;
  min-height: 78px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand-name {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.brand-name span {
  color: var(--accent);
}

.brand-note {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.nav-tabs {
  display: flex;
  align-items: stretch;
  gap: 8px;
  min-width: 0;
}

.nav-tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 100px;
  padding: 0 8px;
  border-bottom: 4px solid transparent;
  color: #293241;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.nav-tab svg {
  width: 19px;
  height: 19px;
}

.nav-tab.active {
  color: var(--accent);
  border-color: var(--accent);
}

.admin-chip {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #263040;
  font-size: 15px;
  white-space: nowrap;
}

.avatar {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #404a5a;
  cursor: pointer;
}

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

.notification-dot {
  position: absolute;
  top: 4px;
  right: 3px;
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(360px, 33%) minmax(0, 1fr);
  min-height: calc(100vh - 178px);
  background: var(--surface);
  max-width: 100vw;
}

.app-view {
  display: none;
}

.app-view.active {
  display: grid;
}

.trust-strip.app-view.active {
  display: grid;
}

.page-shell.app-view.active {
  display: block;
}

.booking-pane {
  border-right: 1px solid var(--line);
  padding: 26px 28px 20px;
  min-width: 0;
}

.queue-pane {
  padding: 28px 28px 18px;
  min-width: 0;
}

.page-shell {
  min-height: calc(100vh - 78px);
  padding: 30px 28px 38px;
  background: var(--surface);
}

.page-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.metric-card,
.table-panel,
.job-column,
.technician-card,
.assurance-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.metric-card {
  display: grid;
  gap: 7px;
  min-height: 100px;
  padding: 16px;
}

.metric-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-card strong {
  font-size: 26px;
  line-height: 1;
}

.metric-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.job-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 14px;
}

.job-column {
  min-width: 0;
  padding: 14px;
  background: var(--surface-soft);
}

.job-column h2 {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
}

.job-column h2 span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
}

.job-card {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 20px rgba(22, 33, 48, 0.04);
}

.job-card + .job-card {
  margin-top: 10px;
}

.job-card header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.job-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.3;
}

.job-card p,
.job-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.job-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.technician-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.technician-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.technician-card .ghost-action {
  width: fit-content;
}

.technician-editor {
  margin-bottom: 18px;
}

.technician-form {
  padding: 0 18px 18px;
}

.technician-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: end;
}

.technician-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.technician-avatar {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #087963;
  font-weight: 850;
}

.technician-card h2 {
  margin-top: 2px;
  font-size: 16px;
}

.technician-card p,
.panel-heading p,
.assurance-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.skill-list,
.cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.skill-pill,
.cert-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 7px;
  background: #eef3f8;
  color: #495566;
  font-size: 12px;
  font-weight: 760;
}

.cert-pill.ready {
  background: var(--accent-soft);
  color: #087963;
}

.cert-pill.progress {
  background: var(--amber-soft);
  color: var(--amber);
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.panel-heading h2 {
  font-size: 16px;
}

.compact-table {
  min-width: 780px;
}

.report-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.wide-panel {
  grid-column: 1 / -1;
}

.bar-list {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.bar-row {
  display: grid;
  gap: 6px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  color: #2d3748;
  font-size: 13px;
  font-weight: 760;
}

.bar-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef3f8;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--accent);
}

.pipeline-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(90px, 1fr));
  gap: 10px;
  padding: 16px;
}

.pipeline-cell {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.pipeline-cell span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.pipeline-cell strong {
  font-size: 24px;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.assurance-grid article {
  padding: 18px;
}

.assurance-grid h2 {
  margin-bottom: 9px;
  font-size: 17px;
}

.empty-card {
  padding: 16px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.client-shell {
  min-height: 100vh;
  background: var(--bg);
}

.client-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  max-width: 100vw;
  overflow: hidden;
}

.client-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: #2b3544;
  text-decoration: none;
  font-size: 13px;
  font-weight: 760;
  flex: 0 0 auto;
}

.client-support svg {
  width: 17px;
  height: 17px;
}

.client-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 28px;
}

.client-intro {
  display: grid;
  align-content: start;
  gap: 22px;
  padding-top: 12px;
}

.client-intro h1 {
  font-size: 34px;
  line-height: 1.08;
}

.client-intro .pane-title p {
  max-width: 520px;
  font-size: 16px;
}

.client-trust-list {
  display: grid;
  gap: 10px;
}

.client-trust-list article,
.client-booking-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.client-trust-list article {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
}

.client-trust-list strong {
  font-size: 14px;
}

.client-trust-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.client-booking-card {
  padding: 24px;
  box-shadow: var(--shadow);
}

.client-booking-card h2 {
  margin-bottom: 18px;
  font-size: 20px;
}

.pane-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.pane-title > svg {
  width: 27px;
  height: 27px;
  margin-top: 2px;
  color: #4b5566;
  flex: 0 0 auto;
}

.pane-title > div {
  min-width: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-size: 22px;
  line-height: 1.18;
}

.pane-title p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.booking-form {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.booking-form label,
.compact-filter {
  display: grid;
  gap: 7px;
}

.booking-form label > span,
.compact-filter span,
.deposit-box > span {
  color: #283241;
  font-size: 13px;
  font-weight: 760;
}

select,
input,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

select,
input {
  min-height: 38px;
  padding: 0 14px;
}

textarea {
  min-height: 60px;
  padding: 12px 14px;
  resize: vertical;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 111, 251, 0.12);
}

.availability {
  margin-top: -6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 650;
}

.availability.warn {
  color: var(--amber);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.upload-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  min-height: 62px;
}

.upload-button {
  display: grid;
  place-items: center;
  min-width: 170px;
  border: 1px dashed #90b9ff;
  border-radius: var(--radius);
  background: #f8fbff;
  color: var(--blue);
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
}

.upload-button svg {
  width: 22px;
  height: 22px;
  margin-bottom: 3px;
}

.upload-button small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.hidden-file {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.photo-preview {
  display: flex;
  gap: 8px;
  overflow: hidden;
  min-width: 0;
}

.preview-tile,
.preview-count {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--muted);
  font-weight: 750;
  flex: 0 0 auto;
}

.preview-tile img {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius) - 1px);
  object-fit: cover;
}

.deposit-box {
  display: grid;
  gap: 5px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
}

.deposit-box strong {
  color: #1189a2;
  font-size: 18px;
  line-height: 1.2;
}

.deposit-box small {
  color: var(--muted);
  font-size: 12px;
}

.check-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.check-row input {
  width: 17px;
  height: 17px;
  min-height: 0;
  margin-top: 2px;
  accent-color: var(--blue);
}

.check-row span {
  font-weight: 520 !important;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(11, 111, 251, 0.22);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
}

.primary-action svg {
  width: 20px;
  height: 20px;
}

.primary-action:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-message {
  min-height: 20px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.form-message.error {
  color: var(--red);
}

.queue-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.queue-actions {
  display: flex;
  align-items: end;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.compact-filter {
  min-width: 145px;
}

.compact-filter select {
  min-height: 40px;
  font-size: 13px;
}

.ghost-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: #2b3544;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.ghost-action svg {
  width: 17px;
  height: 17px;
}

.compact-primary {
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
}

.admin-message {
  margin: -8px 0 16px;
}

.admin-layout {
  display: grid;
  gap: 18px;
}

.admin-panel {
  min-width: 0;
}

.admin-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-table-wrap {
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
}

.admin-table {
  min-width: 1100px;
}

.admin-table th,
.admin-table td {
  padding: 10px;
  vertical-align: middle;
}

.admin-table input[type="text"],
.admin-table input[type="number"] {
  min-height: 34px;
  padding: 0 10px;
  font-size: 13px;
}

.admin-table input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  accent-color: var(--blue);
}

.admin-rules-form {
  padding: 0 18px 18px;
}

.admin-check {
  align-self: end;
  min-height: 38px;
  padding: 8px 0;
}

.queue-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 22px 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.queue-meta strong {
  color: var(--text);
}

.auto-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  min-height: 58px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  color: #4a5567;
  background: var(--surface-soft);
  font-size: 13px;
  font-weight: 800;
}

tbody tr {
  cursor: pointer;
}

tbody tr:hover {
  background: #f9fbff;
}

tbody tr.selected {
  background: #f0f7ff;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.job-id {
  color: var(--blue);
  font-weight: 760;
  white-space: nowrap;
}

.tier-pill,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.tier-pill {
  background: #e7eef5;
  color: #4c5868;
}

.tier-pill.pro {
  background: var(--accent-soft);
  color: #087963;
}

.tier-pill.warning {
  background: var(--amber-soft);
  color: var(--amber);
}

.status-pill {
  background: #eef3f8;
  color: #4c5868;
}

.status-new,
.status-assigned {
  background: var(--blue-soft);
  color: #075fcf;
}

.status-pending,
.status-manual-review {
  background: var(--amber-soft);
  color: var(--amber);
}

.status-in-progress,
.status-completed {
  background: var(--accent-soft);
  color: #087963;
}

.status-declined {
  background: var(--red-soft);
  color: var(--red);
}

.status-select {
  min-width: 126px;
  min-height: 32px;
  padding: 0 8px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 750;
}

.empty-row {
  color: var(--muted);
  text-align: center;
}

.booking-detail {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.detail-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-detail strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.booking-detail p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.danger-action {
  border-color: rgba(226, 68, 70, 0.35);
  color: var(--red);
}

.detail-contact {
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.trust-strip article {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  min-height: 100px;
  padding: 24px 32px;
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip svg {
  width: 42px;
  height: 42px;
  color: var(--accent);
  flex: 0 0 auto;
}

.trust-strip h3 {
  font-size: 16px;
  line-height: 1.2;
}

.trust-strip p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

  .admin-chip {
    display: none;
  }

  .workspace {
    grid-template-columns: 1fr;
  }

  .metric-grid,
  .job-board,
  .technician-grid,
  .assurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-pane {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .client-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .topbar {
    position: static;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }

  .brand-name {
    font-size: 27px;
  }

  .client-topbar {
    gap: 12px;
    padding: 16px 20px;
  }

  .client-support {
    padding: 0 12px;
  }

  .client-main {
    padding: 28px 20px;
  }

  .client-intro h1 {
    font-size: 28px;
  }

  .client-booking-card {
    padding: 18px;
  }

  .nav-tabs {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-tab {
    min-height: 44px;
    min-width: auto;
    flex: 0 0 auto;
  }

  .booking-pane,
  .queue-pane,
  .page-shell {
    padding: 20px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .page-header,
  .panel-heading {
    display: grid;
  }

  .workspace {
    display: block;
    min-height: auto;
  }

  .booking-form label,
  .field-grid {
    min-width: 0;
  }

  select,
  input,
  textarea,
  .deposit-box,
  .upload-button,
  .primary-action {
    max-width: 100%;
  }

  .queue-header,
  .booking-detail {
    grid-template-columns: 1fr;
  }

  .queue-header {
    display: grid;
  }

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

  .field-grid,
  .trust-strip,
  .metric-grid,
  .job-board,
  .technician-grid,
  .report-layout,
  .assurance-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .photo-preview {
    min-height: 62px;
  }

  .photo-preview:empty {
    display: none;
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .client-support {
    display: none;
  }
}

@media (max-width: 480px) {
  .pane-title,
  .booking-form {
    width: min(350px, 100%);
  }
}

.app-shell .app-view:not(.active) {
  display: none;
}

.app-shell .page-shell.app-view.active {
  display: block;
}

.app-shell .trust-strip.app-view.active,
.app-shell .workspace.app-view.active {
  display: grid;
}
