:root {
  --primary: #007a5e;
  --primary-dark: #005c46;
  --primary-light: #e8f5e9;
  --bg: #f4fbf5;
  --card: #ffffff;
  --muted: #5f7268;
  --border: #d8e8dc;
  --sidebar: #ffffff;
  --shadow: 0 8px 24px rgba(0, 122, 94, 0.08);
  --bottom-nav-h: 68px;
  --topbar-h: 56px;
  --touch-min: 44px;
  --warn: #d97706;
  --danger: #ef4444;
  --info: #2563eb;
}
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html {
  -webkit-text-size-adjust: 100%;
  color-scheme: light;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #ffffff;
  color: #1b2e24;
  min-height: 100vh;
  min-height: 100dvh;
}
a { color: inherit; text-decoration: none; }
.wrap {
  max-width: 420px;
  margin: 0 auto;
  padding: max(16px, env(safe-area-inset-top)) 16px max(24px, env(safe-area-inset-bottom));
}
.shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  min-height: 100dvh;
}
.app-frame {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  min-width: 0;
  background: #ffffff;
}
.sidebar {
  background: var(--sidebar);
  border-right: 1px solid var(--border);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
}
.sidebar-desktop { display: flex; }
.brand { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand h1 { margin: 0; font-size: 1.05rem; color: var(--primary-dark); }
.brand .sub { color: var(--muted); font-size: 0.78rem; margin-top: 2px; }
.nav-section {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 12px 4px;
}
.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #2d4035;
  border: 1px solid transparent;
  min-height: var(--touch-min);
}
.nav-link:hover { background: #f0faf3; border-color: var(--border); }
.nav-link.active {
  background: var(--primary-light);
  border-color: #b8dfc8;
  color: var(--primary-dark);
}
.nav-count {
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 999px;
  min-width: 22px;
  text-align: center;
}
.nav-count.muted { background: #d8e8dc; color: var(--muted); }
.sidebar-foot { margin-top: auto; padding-top: 16px; }
.api-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #f8faf9;
  border: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
}
.api-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #94a3b8;
  flex-shrink: 0;
}
.api-dot.ok { background: #22c55e; box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); }
.api-dot.err { background: var(--danger); }
.mobile-topbar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 20;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--topbar-h);
  padding: 8px 16px;
  padding-top: max(8px, env(safe-area-inset-top));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.mobile-topbar h1 {
  margin: 0;
  font-size: 1rem;
  color: var(--primary-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-topbar .subtle {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}
.bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 4px 6px 0;
  padding-bottom: max(4px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 28px rgba(0, 122, 94, 0.1);
}
.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: var(--touch-min);
  padding: 6px 2px 8px;
  border: 0;
  border-radius: 12px;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  line-height: 1.1;
  background: transparent;
  cursor: pointer;
  font: inherit;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.bottom-nav-item.active {
  color: var(--primary-dark);
}
.bottom-nav-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--primary);
}
.bottom-nav-item.active .nav-svg {
  stroke-width: 2.25;
  color: var(--primary);
}
.nav-ico {
  position: relative;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}
.nav-svg {
  width: 22px;
  height: 22px;
  display: block;
  transition: color 0.15s ease, transform 0.15s ease;
}
.bottom-nav-item:active .nav-svg {
  transform: scale(0.92);
}
.nav-label {
  letter-spacing: 0.01em;
}
.nav-badge {
  position: absolute;
  top: -2px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--danger);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.35);
}

.nav-more-sheet[hidden] { display: none; }
.nav-more-sheet {
  position: fixed;
  inset: 0;
  z-index: 50;
}
.nav-more-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.35);
  cursor: pointer;
}
.nav-more-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 16px calc(var(--bottom-nav-h) + 12px + env(safe-area-inset-bottom));
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.12);
  animation: navSheetUp 0.22s ease;
}
@keyframes navSheetUp {
  from { transform: translateY(12px); opacity: 0.8; }
  to { transform: translateY(0); opacity: 1; }
}
.nav-more-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.nav-more-head strong {
  font-size: 1rem;
  color: var(--primary-dark);
}
.nav-more-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.nav-more-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.nav-more-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 6px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  color: #334155;
  text-align: center;
}
.nav-more-link.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}
.nav-more-link.active .nav-svg {
  color: var(--primary);
  stroke-width: 2.25;
}
.nav-more-ico {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff;
}
.nav-more-link.active .nav-more-ico {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 122, 94, 0.12);
}
.nav-more-ico .nav-svg {
  width: 20px;
  height: 20px;
}
.nav-more-badge {
  position: absolute;
  top: 6px;
  right: 10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--danger);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 18px;
}
body.nav-sheet-open { overflow: hidden; }
.main {
  flex: 1;
  padding: 24px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg);
}
.main-inner { max-width: 960px; margin: 0 auto; }
.page-head { margin-bottom: 20px; }
.page-head h2 { margin: 0; font-size: 1.35rem; color: var(--primary-dark); }
.page-head p { margin: 6px 0 0; color: var(--muted); font-size: 0.92rem; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.login { margin: 40px auto 0; max-width: 400px; }
.login-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: transparent;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  overflow: hidden;
}
.login-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.92rem; }
input[type=password], input[type=text], input[type=tel], input[type=search], select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  font-size: 16px;
  min-height: var(--touch-min);
  background: #fff;
}
textarea { min-height: 96px; resize: vertical; }
.btn {
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  min-height: var(--touch-min);
  transition: opacity 0.15s ease, transform 0.1s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-outline {
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid var(--border);
}
.btn-full { width: 100%; }
.btn-sm { padding: 8px 12px; min-height: 36px; font-size: 0.85rem; }
.row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.action-stack { display: grid; gap: 8px; margin-top: 14px; }
.action-stack .btn { width: 100%; }
.action-stack input[type=text] { width: 100%; }
.meta { color: var(--muted); font-size: 0.88rem; line-height: 1.5; word-break: break-word; }
.flash { background: var(--primary-light); color: var(--primary-dark); padding: 12px 14px; border-radius: 12px; margin-bottom: 16px; font-size: 0.92rem; }
.err { background: #fef2f2; color: #b91c1c; padding: 12px 14px; border-radius: 12px; margin-bottom: 16px; font-size: 0.92rem; }
.empty {
  color: var(--muted);
  text-align: center;
  padding: 40px 16px;
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: 16px;
  font-size: 0.92rem;
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  vertical-align: middle;
}
.badge-pending { background: #fef3c7; color: #92400e; }
.badge-open { background: #dbeafe; color: #1e40af; }
.badge-active { background: var(--primary-light); color: var(--primary-dark); }
.badge-paid { background: #dcfce7; color: #166534; }
.badge-done { background: #e2e8f0; color: #475569; }
.badge-cancel { background: #fee2e2; color: #991b1b; }
.badge-neutral { background: var(--primary-light); color: var(--primary-dark); }
.badge-role {
  background: #f1f5f9;
  color: #334155;
  margin-right: 4px;
  margin-bottom: 4px;
}
.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.kpi {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}
.kpi-val { font-size: 1.6rem; font-weight: 700; color: var(--primary-dark); line-height: 1.1; }
.kpi-label { font-size: 0.78rem; color: var(--muted); margin-top: 4px; font-weight: 600; }
.dashboard-card-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 8px;
}
.dashboard-card-svg {
  width: 20px;
  height: 20px;
}
.dashboard-card-content {
  flex: 1;
}
.dashboard-card-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
}
.dashboard-card-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.hub-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 130px;
  overflow: hidden;
}
.hub-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  flex: 1;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.hub-card-body:hover { background: #fafdfb; }
.hub-card-body:active { transform: scale(0.98); }
.hub-card-tools {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  background: #f8faf9;
}
.hub-card-tools form { flex: 1; }
.hub-card-tools .btn { width: 100%; }
.row-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0;
}
.secondary-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.module-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hub-card h3 { margin: 0; font-size: 1rem; color: var(--primary-dark); }
.hub-card p { margin: 0; color: var(--muted); font-size: 0.86rem; line-height: 1.45; flex: 1; }
.hub-stat {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}
.hub-stat span { font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.item-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.item-card strong { font-size: 1.02rem; color: #1b2e24; display: block; }
.item-card .meta { margin-top: 6px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}
.form-grid .btn-primary { width: auto; }
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  align-items: center;
}
.filter-bar select { width: auto; min-width: 160px; min-height: 40px; font-size: 0.9rem; }
.search-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.search-bar input { flex: 1; min-height: 40px; font-size: 0.95rem; }
.data-table-wrap { overflow-x: auto; border-radius: 14px; border: 1px solid var(--border); background: var(--card); }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.data-table th, .data-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table th {
  background: #f8faf9;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 700;
}
.data-table tr:last-child td { border-bottom: 0; }
.data-table tr:hover td { background: #fafdfb; }
.mono { font-family: ui-monospace, monospace; font-size: 0.82rem; }
.photo-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.photo-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
  cursor: pointer;
  background: #f1f5f9;
}
.photo-thumb:hover { border-color: var(--primary); }
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92vw, 640px);
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  right: 16px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (min-width: 861px) {
  .action-stack { grid-template-columns: auto auto 1fr; align-items: center; }
  .action-stack .btn { width: auto; }
}

@media (max-width: 860px) {
  .shell { display: block; }
  .sidebar-desktop { display: none; }
  .mobile-topbar { display: flex; }
  .bottom-nav { display: grid; }
  .main {
    padding: 16px;
    padding-bottom: calc(var(--bottom-nav-h) + 16px + env(safe-area-inset-bottom));
  }
  .page-head { margin-bottom: 14px; }
  .page-head h2 { font-size: 1.15rem; }
  .page-head p { font-size: 0.86rem; }
  .page-head-desktop { display: none; }
  .kpi-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hub-grid { grid-template-columns: 1fr; gap: 12px; }
  .hub-card { min-height: auto; padding: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .btn-primary { width: 100%; }
  .login { margin-top: 24px; }
  .desktop-only { display: none; }
  .mobile-only { display: block; }
  .data-table { font-size: 0.82rem; }
  .data-table th, .data-table td { padding: 10px; }
}

.sitter-applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.sitter-application-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 122, 94, 0.08);
}

.sitter-application-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.sitter-application-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--primary-dark);
  font-weight: 700;
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.sitter-phone {
  font-size: 0.9rem;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 500;
}

.sitter-source-badge {
  background: #dbeafe;
  color: #1e40af;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sitter-application-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.detail-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.detail-value {
  font-size: 0.95rem;
  color: #1b2e24;
  font-weight: 500;
  word-break: break-word;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.tag-alt {
  background: #e0e7ff;
  color: #4338ca;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.photo-thumb-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.photo-thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid var(--border);
  cursor: pointer;
  background: #f8faf9;
  transition: all 0.2s ease;
}

.photo-thumb:hover {
  border-color: var(--primary);
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 122, 94, 0.15);
}

.photo-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
}

.sitter-application-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 2px solid var(--border);
}

.sitter-application-actions .btn {
  padding: 14px 20px;
  font-weight: 700;
  border-radius: 14px;
  font-size: 0.95rem;
}

/* Filter tabs styling */
.filter-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.filter-tab {
  background: transparent;
  border: 0;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-tab:hover {
  background: #f0faf3;
  color: var(--primary-dark);
}

.filter-tab.active {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid #b8dfc8;
}

/* Hub section title */
.hub-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .sitter-applications-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sitter-application-card {
    padding: 20px;
    border-radius: 16px;
  }
  .sitter-application-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .sitter-application-header h3 {
    font-size: 1.15rem;
  }
  .sitter-phone {
    font-size: 0.88rem;
  }
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .sitter-application-actions {
    grid-template-columns: 1fr;
  }
  .filter-tabs {
    gap: 8px;
  }
  .filter-tab {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}