.pt-app-shell,
.pt-app-shell body {
  background: #f6f8fb;
}

.pt-app-shell .float-text,
.pt-app-shell .scrollbar-v,
.pt-app-shell #de-loader,
.pt-app-shell #top,
.pt-app-shell header.clone,
.pt-app-shell .header-clone,
.pt-app-shell .header-wrap,
.pt-app-shell .header-wrapper,
.pt-app-shell .mfp-wrap,
.pt-app-shell .mfp-bg {
  display: none !important;
}

.pt-app-shell #wrapper {
  overflow: visible;
  background: transparent;
}

.pt-app-shell #app-shell {
  min-height: auto;
}

.pt-app-shell #app-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.pt-app-shell #app-content {
  min-height: 0;
}

.pt-app-shell .pt-shell #app-content {
  padding-top: var(--app-header-height);
}

.pt-app-shell #app-content section {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-app-shell .pt-shell--fullscreen #app-content {
  padding-top: 0;
  min-height: 100vh;
}

.pt-app-shell #app-header .container {
  max-width: 1260px;
}

.pt-app-shell #app-footer {
  margin-top: 0;
}

.pt-app-shell #mainmenu > li > a.active,
.pt-app-shell #mainmenu > li > a.is-active,
.pt-app-shell #mainmenu > li > a:hover,
.pt-app-shell .pt-bottom-nav__item.active,
.pt-app-shell .pt-bottom-nav__item.is-active {
  color: var(--primary-color) !important;
}

.pt-app-shell #mainmenu > li > a.active::after,
.pt-app-shell #mainmenu > li > a.is-active::after {
  width: 100%;
}

.pt-app-shell .pt-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  justify-content: space-around;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
}

.pt-app-shell .pt-bottom-nav__item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.pt-app-shell .pt-bottom-nav__item i {
  font-size: 16px;
}

.pt-app-shell .pt-submenu-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  padding: 8px 20px 4px;
}

.pt-app-shell .pt-home {
  padding: 32px 0 48px;
}

.pt-app-shell {
  --pt-font-sans: "Inter", "Segoe UI", Arial, sans-serif;
  --pt-type-hero-size: 40px;
  --pt-type-hero-line: 52px;
  --pt-type-section-size: 24px;
  --pt-type-section-line: 32px;
  --pt-type-card-size: 18px;
  --pt-type-card-line: 26px;
  --pt-type-body-size: 16px;
  --pt-type-body-line: 26px;
  --pt-type-meta-size: 14px;
  --pt-type-meta-line: 22px;
  --pt-type-label-size: 12px;
  --pt-type-label-line: 18px;
  --pt-type-button-size: 15px;
  --pt-type-button-line: 20px;
}

.pt-app-shell,
.pt-app-shell input,
.pt-app-shell textarea,
.pt-app-shell select,
.pt-app-shell button,
.pt-app-shell #app-header,
.pt-app-shell #app-footer,
.pt-app-shell #app-content {
  font-family: var(--pt-font-sans);
}

.pt-app-shell .pt-home-dashboard {
  padding: 32px 0 48px;
  background:
    radial-gradient(circle at top left, rgba(45, 212, 191, 0.1), transparent 22%),
    radial-gradient(circle at 85% 0%, rgba(20, 184, 166, 0.08), transparent 18%),
    linear-gradient(180deg, #f9fcfc 0%, #f4f8f8 100%);
}

.pt-app-shell .pt-home-dashboard .container {
  max-width: 1100px;
}

.pt-app-shell .pt-home-hero-card {
  display: grid;
  gap: 20px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background:
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fcfb 100%);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.pt-app-shell .pt-home-hero-card__copy {
  display: grid;
  gap: 10px;
}

.pt-app-shell .pt-home-hero-card__greeting {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #475467;
}

.pt-app-shell .pt-home-hero-card__title {
  margin: 0;
  font-size: clamp(32px, 4vw, var(--pt-type-hero-size));
  line-height: var(--pt-type-hero-line);
  letter-spacing: -0.025em;
  font-weight: 600;
  color: #101828;
}

.pt-app-shell .pt-home-hero-card__text {
  max-width: 720px;
  margin: 0;
  font-size: var(--pt-type-body-size);
  line-height: var(--pt-type-body-line);
  font-weight: 400;
  color: #667085;
}

.pt-app-shell .pt-home-hero-card__actions {
  display: flex;
  justify-content: flex-start;
}

.pt-app-shell .pt-home-btn-main {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  border: none;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.18);
  font-size: var(--pt-type-button-size);
  line-height: var(--pt-type-button-line);
  font-weight: 600;
  letter-spacing: 0;
}

.pt-app-shell .pt-home-btn-subtle {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: #0f766e;
  font-size: var(--pt-type-button-size);
  line-height: var(--pt-type-button-line);
  font-weight: 600;
  box-shadow: none;
}

.pt-app-shell .pt-home-btn-subtle:hover {
  border-color: rgba(15, 118, 110, 0.35);
  color: #0b5f59;
}

.pt-app-shell .pt-home-actions {
  margin-top: 32px;
}

.pt-app-shell .pt-home-actions--followup {
  margin-top: 40px;
}

.pt-app-shell .pt-home-section-intro {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.pt-app-shell .pt-home-section-intro--compact {
  margin-bottom: 12px;
}

.pt-app-shell .pt-home-section-intro__title {
  margin: 0;
  font-size: var(--pt-type-section-size);
  line-height: var(--pt-type-section-line);
  letter-spacing: -0.02em;
  color: #0f172a;
  font-weight: 700;
}

.pt-app-shell .pt-home-actions__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.pt-app-shell .pt-home-action,
.pt-app-shell .pt-home-progress .pt-section {
  margin: 0;
  min-height: 100%;
  width: 100%;
}

.pt-app-shell .pt-home-action > .pt-state,
.pt-app-shell .pt-home-progress .pt-section > .pt-state {
  min-height: 100%;
  width: 100%;
}

.pt-app-shell .pt-home-action[data-state="ready"] .pt-state--ready,
.pt-app-shell .pt-home-action[data-state="empty"] .pt-state--empty,
.pt-app-shell .pt-home-action[data-state="loading"] .pt-state--loading,
.pt-app-shell .pt-home-progress .pt-section[data-state="ready"] .pt-state--ready,
.pt-app-shell .pt-home-progress .pt-section[data-state="empty"] .pt-state--empty,
.pt-app-shell .pt-home-progress .pt-section[data-state="loading"] .pt-state--loading {
  display: flex;
  height: 100%;
  width: 100%;
}

.pt-app-shell .pt-home-dashboard .pt-card {
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.pt-app-shell .pt-home-dashboard .pt-card__eyebrow {
  margin-bottom: 6px;
  font-size: var(--pt-type-label-size);
  line-height: var(--pt-type-label-line);
  letter-spacing: 0.08em;
  color: #7c8794;
  font-weight: 500;
  text-transform: uppercase;
}

.pt-app-shell .pt-home-dashboard .pt-card__title {
  font-size: var(--pt-type-card-size);
  line-height: var(--pt-type-card-line);
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: #102033;
  font-weight: 500;
}

.pt-app-shell .pt-home-card__text {
  margin: 0;
  font-size: var(--pt-type-body-size);
  line-height: var(--pt-type-body-line);
  font-weight: 400;
  color: #667085;
}

.pt-app-shell .pt-home-card {
  width: 100%;
}

.pt-app-shell .pt-home-card__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.pt-app-shell .pt-home-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: var(--pt-type-meta-size);
  line-height: var(--pt-type-meta-line);
  color: #667085;
  font-weight: 400;
}

.pt-app-shell .pt-home-card--appointment {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfc 100%);
}

.pt-app-shell .pt-home-card--questionnaire {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
}

.pt-app-shell .pt-home-card--checkin {
  background: linear-gradient(180deg, #f5fbfa 0%, #ffffff 100%);
}

.pt-app-shell .pt-home-card--support {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
}

.pt-app-shell .pt-home-progress {
  margin-top: 40px;
}

.pt-app-shell .pt-home-progress .pt-card {
  padding: 24px;
  background: linear-gradient(180deg, #fcfffe 0%, #f6fbfa 100%);
}

.pt-app-shell .pt-home-card--progress-empty {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
}

.pt-app-shell .pt-home-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pt-app-shell .pt-home-stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.pt-app-shell .pt-home-stat__value {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #101828;
}

.pt-app-shell .pt-home-stat__label {
  margin-top: 4px;
  font-size: 13px;
  line-height: 18px;
  color: #667085;
}

.pt-app-shell #app-footer {
  margin-top: 8px;
}

.pt-app-shell .pt-app-footer {
  background: transparent;
  border-top: 0;
}

.pt-app-shell .pt-app-footer__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 0 8px;
  color: #7c8794;
  font-size: var(--pt-type-meta-size);
  line-height: var(--pt-type-meta-line);
}

.pt-app-shell .pt-app-footer__links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pt-app-shell .pt-app-footer a {
  color: #667085;
}

.pt-app-shell #mainmenu > li > a.menu-item,
.pt-app-shell .de-menu-profile.h-account,
.pt-app-shell .de-submenu-profile a,
.pt-app-shell .btn-main,
.pt-app-shell .btn-main.btn-small {
  font-family: var(--pt-font-sans);
}

.pt-app-shell #mainmenu > li > a.menu-item {
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pt-app-shell .de-menu-profile.h-account,
.pt-app-shell .de-submenu-profile a {
  font-size: 14px;
  line-height: 22px;
}

.pt-app-shell .pt-zone-page {
  padding: 32px 0 48px;
}

.pt-app-shell .pt-zone-hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}

.pt-app-shell .pt-zone-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-left: auto;
}

.pt-app-shell .pt-zone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pt-app-shell .pt-zone-card {
  display: block;
  text-decoration: none;
  color: inherit;
  min-height: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pt-app-shell .pt-zone-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.pt-app-shell .pt-zone-card__meta,
.pt-app-shell .pt-zone-card__actions,
.pt-app-shell .pt-psych-discovery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pt-app-shell .pt-care-dashboard .container {
  max-width: 1100px;
}

.pt-app-shell .pt-care-dashboard__head {
  margin-bottom: 24px;
}

.pt-app-shell .pt-care-dashboard__hero {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: linear-gradient(180deg, #f8fdfc 0%, #ffffff 100%);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.pt-app-shell .pt-care-dashboard__hero .pt-state {
  display: none;
}

.pt-app-shell .pt-care-dashboard__hero[data-state="loading"] .pt-state--loading,
.pt-app-shell .pt-care-dashboard__hero[data-state="ready"] .pt-state--ready {
  display: grid;
}

.pt-app-shell .pt-care-dashboard__hero .pt-state--loading,
.pt-app-shell .pt-care-dashboard__hero .pt-state--ready {
  gap: 16px;
}

.pt-app-shell .pt-care-dashboard__hero-text {
  margin: 0;
  max-width: 62ch;
  font-size: 17px;
  line-height: 28px;
  color: #64748b;
}

.pt-app-shell .pt-care-dashboard__hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pt-app-shell .pt-care-dashboard__hero-meta-item {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f7faf9;
  border: 1px solid rgba(226, 232, 240, 0.88);
}

.pt-app-shell .pt-care-dashboard__hero-meta-label {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.pt-app-shell .pt-care-dashboard__hero-meta-item strong {
  color: #0f172a;
  font-size: 17px;
  line-height: 26px;
  font-weight: 600;
}

.pt-app-shell .pt-care-dashboard__hero-actions,
.pt-app-shell .pt-care-dashboard__card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pt-app-shell .pt-care-dashboard__section {
  margin-top: 24px;
}

.pt-app-shell .pt-care-dashboard__section-text {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 26px;
}

.pt-app-shell .pt-care-dashboard__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pt-app-shell .pt-care-dashboard__action-card,
.pt-app-shell .pt-care-dashboard__report-card {
  display: grid;
  gap: 14px;
  height: 100%;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.pt-app-shell .pt-care-dashboard__card-text {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 25px;
}

.pt-app-shell .pt-care-dashboard__card-actions {
  margin-top: auto;
}

.pt-app-shell .pt-care-dashboard__section--secondary .pt-care-dashboard__report-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.pt-app-shell .pt-home-hero {
  padding-bottom: 8px;
}

.pt-app-shell .pt-psych-discovery__filters .form-control,
.pt-app-shell .pt-psych-discovery__filters .form-select {
  min-width: 180px;
  flex: 1 1 220px;
}

.pt-app-shell .pt-psych-discovery-card .pt-psychologist {
  margin-bottom: 16px;
}

.pt-app-shell .pt-psychologists-page .container {
  max-width: 1120px;
}

.pt-app-shell .pt-psychologists-page .pt-page-head {
  margin-bottom: 24px;
}

.pt-app-shell .pt-psychologists-page .pt-page-title {
  margin: 0 0 8px;
  font-size: 40px;
  line-height: 52px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.pt-app-shell .pt-psychologists-page .pt-page-subtitle {
  max-width: 680px;
  margin: 0;
  font-size: 18px;
  line-height: 30px;
  color: #64748b;
}

.pt-app-shell .pt-psychologists-page .pt-psych-discovery {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.82);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.pt-app-shell .pt-psychologists-page .pt-psych-discovery__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pt-app-shell .pt-psychologists-page .pt-psych-search {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
}

.pt-app-shell .pt-psychologists-page .pt-psych-search__icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 18px;
  pointer-events: none;
  transition: color 0.2s ease;
}

.pt-app-shell .pt-psychologists-page .pt-psych-search .form-control,
.pt-app-shell .pt-psychologists-page .pt-psych-discovery__controls .form-select {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 0;
  background: #f5f7f6;
  box-shadow: none;
  font-size: 15px;
  line-height: 22px;
  color: #0f172a;
  transition: box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.pt-app-shell .pt-psychologists-page .pt-psych-search .form-control {
  padding-left: 52px;
  padding-right: 20px;
  font-size: 16px;
}

.pt-app-shell .pt-psychologists-page .pt-psych-search .form-control::placeholder {
  color: #64748b;
}

.pt-app-shell .pt-psychologists-page .pt-psych-search .form-control:focus,
.pt-app-shell .pt-psychologists-page .pt-psych-control:focus-within .form-select {
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14);
  transform: translateY(-1px);
}

.pt-app-shell .pt-psychologists-page .pt-psych-search:focus-within .pt-psych-search__icon {
  color: #0f766e;
}

.pt-app-shell .pt-psychologists-page .pt-psych-discovery__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}

.pt-app-shell .pt-psychologists-page .pt-psych-control {
  position: relative;
  display: block;
  flex: 0 0 auto;
  min-width: 156px;
}

.pt-app-shell .pt-psychologists-page .pt-psych-control .form-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  cursor: pointer;
}

.pt-app-shell .pt-psychologists-page .pt-psych-control__caret {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 16px;
  pointer-events: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.pt-app-shell .pt-psychologists-page .pt-psych-control:hover .form-select {
  background: #eef4f2;
}

.pt-app-shell .pt-psychologists-page .pt-psych-control:hover .pt-psych-control__caret,
.pt-app-shell .pt-psychologists-page .pt-psych-control:focus-within .pt-psych-control__caret {
  color: #0f766e;
}

.pt-app-shell .pt-psychologists-page .pt-psych-control:focus-within .pt-psych-control__caret {
  transform: translateY(-50%) rotate(180deg);
}

.pt-app-shell .pt-psychologists-page .pt-psych-quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.pt-app-shell .pt-psychologists-page .pt-psych-quick-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 0;
  background: #e6f4f1;
  color: #1f7a6b;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pt-app-shell .pt-psychologists-page .pt-psych-quick-chip:hover {
  background: #d8efe9;
  color: #0f766e;
  transform: translateY(-1px);
}

.pt-app-shell .pt-psychologists-page .pt-psych-quick-chip.is-active {
  background: linear-gradient(135deg, #1f8a7b 0%, #166f63 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.12);
}

.pt-app-shell .pt-psychologists-page .pt-psych-discovery.is-search-focused .pt-psych-quick-filters {
  opacity: 0.2;
  transform: translateY(-4px);
}

.pt-app-shell .pt-psychologists-page .pt-psych-list {
  margin-top: 24px;
}

.pt-app-shell .pt-psychologists-page .pt-list[data-state="loading"] .pt-state--loading {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pt-app-shell .pt-psychologists-page .pt-state--loading .pt-card--skeleton {
  border-radius: 18px;
}

.pt-app-shell .pt-psychologists-page .pt-psych-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pt-app-shell .pt-psychologists-page .pt-psych-card-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  min-height: 420px;
  padding: 28px 24px !important;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pt-app-shell .pt-psychologists-page .pt-psych-card-shell:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.07);
  border-color: rgba(20, 184, 166, 0.18);
}

.pt-app-shell .pt-psychologists-page .pt-psych-card-shell__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pt-app-shell .pt-psychologists-page .pt-psychologist--card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  min-width: 0;
}

.pt-app-shell .pt-psychologists-page .pt-psychologist__avatar--lg {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  object-fit: cover;
  flex: 0 0 auto;
}

.pt-app-shell .pt-psychologists-page .pt-psychologist__body {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.pt-app-shell .pt-psychologists-page .pt-psychologist__body .pt-card__eyebrow {
  margin-bottom: 2px;
}

.pt-app-shell .pt-psychologists-page .pt-psychologist__name--lg {
  margin: 0;
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  color: #0f172a;
}

.pt-app-shell .pt-psychologists-page .pt-psychologist__role--lead {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: #475569;
}

.pt-app-shell .pt-psychologists-page .pt-psych-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pt-app-shell .pt-psychologists-page .pt-psych-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e6f4f1;
  color: #1f7a6b;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
}

.pt-app-shell .pt-psychologists-page .pt-psych-metrics {
  display: grid;
  gap: 8px;
  justify-items: end;
  flex: 0 0 auto;
}

.pt-app-shell .pt-psychologists-page .pt-psych-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f8fafc;
  border: 0;
  color: #334155;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.pt-app-shell .pt-psychologists-page .pt-psych-pill--price {
  background: rgba(20, 184, 166, 0.1);
  color: #0f766e;
  border-color: rgba(20, 184, 166, 0.12);
}

.pt-app-shell .pt-psychologists-page .pt-psych-card-shell__text {
  margin: 0;
  font-size: 15px;
  line-height: 26px;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pt-app-shell .pt-psychologists-page .pt-psych-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pt-app-shell .pt-psychologists-page .pt-psych-detail {
  display: grid;
  gap: 8px;
  padding: 20px 18px !important;
  border-radius: 18px;
  background: #f7faf9;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.pt-app-shell .pt-psychologists-page .pt-psych-detail__label {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.pt-app-shell .pt-psychologists-page .pt-psych-detail__value {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #0f172a;
}

.pt-app-shell .pt-psychologists-page .pt-psych-card-shell__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  align-items: center;
  padding-top: 12px;
}

.pt-app-shell .pt-psychologists-page .pt-psych-card-shell__actions .btn-main {
  display: inline-flex;
  align-items: center;
  min-width: 148px;
  min-height: 44px;
  justify-content: center;
  text-align: center;
}

.pt-app-shell .pt-psychologists-page .pt-psych-card-shell__actions .pt-home-btn-subtle {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: none;
}

.pt-app-shell .pt-psychologists-page .pt-psych-card-shell__actions .pt-home-btn-subtle:hover {
  background: #f8fafc;
  color: #0f172a;
}

.pt-app-shell .pt-psychologists-page .pt-psych-feedback {
  padding: 28px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.pt-app-shell .pt-psychologist-detail-page .container {
  max-width: 1120px;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-hero {
  padding: 36px 40px !important;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: linear-gradient(180deg, #f8fdfc 0%, #ffffff 100%);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-hero__identity {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-hero__avatar {
  width: 112px;
  height: 112px;
  border-radius: 28px;
  object-fit: cover;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-hero__copy {
  min-width: 0;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-hero__name {
  margin: 0 0 6px;
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-hero__title {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  color: #475569;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f4f8f7;
  color: #334155;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-hero__positioning {
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 28px;
  color: #475569;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-hero__chips,
.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: #e6f4f1;
  color: #1f7a6b;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-chip.is-muted {
  background: #f3f4f6;
  color: #64748b;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-info-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
  padding: 28px 24px !important;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-info-item {
  display: grid;
  gap: 10px;
  padding: 24px 20px !important;
  border-radius: 18px;
  background: #f7faf9;
  border: 1px solid rgba(226, 232, 240, 0.88);
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-info-item__label {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-info-item__value {
  font-size: 15px;
  line-height: 24px;
  color: #0f172a;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-main {
  display: grid;
  gap: 24px;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-section {
  display: grid;
  gap: 16px;
  padding: 36px 32px !important;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-section .pt-card__eyebrow {
  margin-bottom: 2px;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-section .pt-card__title,
.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-booking .pt-card__title {
  margin-bottom: 4px;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-section__text {
  margin: 0;
  max-width: 64ch;
  font-size: 16px;
  line-height: 28px;
  color: #475569;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-fit-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  color: #475569;
  font-size: 15px;
  line-height: 25px;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-side {
  position: sticky;
  top: 104px;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-booking {
  display: grid;
  gap: 16px;
  padding: 36px 32px !important;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfb 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-booking__text {
  margin: 0;
  font-size: 15px;
  line-height: 25px;
  color: #64748b;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-booking__summary {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-booking__summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 18px !important;
  border-radius: 18px;
  background: #f7faf9;
  border: 1px solid rgba(226, 232, 240, 0.9);
  font-size: 14px;
  line-height: 22px;
  color: #64748b;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-booking__summary-item strong {
  color: #0f172a;
  font-weight: 600;
  text-align: right;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-booking__actions {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-booking__actions .btn-main {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-reviews {
  display: grid;
  gap: 14px;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-review-card {
  padding: 30px 26px !important;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  background: #fbfdfd;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: #0f172a;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-review-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: #64748b;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-empty {
  padding: 20px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.88);
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-empty__title {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 26px;
  color: #0f172a;
}

.pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-empty__text {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: #64748b;
}

.pt-app-shell .pt-appointments-hub .container {
  max-width: 1100px;
}

.pt-app-shell .pt-appointments-hub .pt-page-head {
  margin-bottom: 32px;
}

.pt-app-shell .pt-appointments-hub .pt-page-title {
  margin: 0 0 8px;
  font-size: 40px;
  line-height: 52px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.pt-app-shell .pt-appointments-hub .pt-page-subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 30px;
  color: #64748b;
}

.pt-app-shell .pt-appointments-hub .pt-appointments-hero {
  margin-bottom: 32px;
}

.pt-app-shell .pt-appointments-hub .pt-section[data-state="error"] .pt-state--error {
  display: block;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hero-skeleton {
  min-height: 220px;
  border-radius: 28px;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: linear-gradient(180deg, #f7fffd 0%, #ffffff 100%);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hero-card__title {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  color: #0f172a;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hero-card__text {
  margin: 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 28px;
  color: #64748b;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hero-card__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hero-card__meta-item,
.pt-app-shell .pt-appointments-hub .pt-appointment-hub-card__meta-item {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f8fbfc;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hero-card__meta-label,
.pt-app-shell .pt-appointments-hub .pt-appointment-hub-card__meta-label {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hero-card__meta-item strong,
.pt-app-shell .pt-appointments-hub .pt-appointment-hub-card__meta-item strong {
  font-size: 15px;
  line-height: 24px;
  color: #0f172a;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hero-card__aside {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 16px;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hero-card__actions,
.pt-app-shell .pt-appointments-hub .pt-appointment-hub-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.pt-app-shell .pt-appointments-hub .pt-tabs--appointments {
  margin-top: 0;
}

.pt-app-shell .pt-appointments-hub .pt-tabs--appointments .pt-tab-list {
  padding: 5px;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.pt-app-shell .pt-appointments-hub .pt-tabs--appointments .pt-tab {
  min-width: 108px;
  padding: 10px 18px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #64748b;
}

.pt-app-shell .pt-appointments-hub .pt-tabs--appointments .pt-tab.is-active {
  background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
  color: #ffffff;
}

.pt-app-shell .pt-appointments-hub .pt-tab-panel {
  margin-top: 24px;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-list {
  gap: 20px;
}

.pt-app-shell .pt-appointments-hub .pt-list[data-state="loading"] .pt-state--loading {
  display: grid;
  gap: 20px;
}

.pt-app-shell .pt-appointments-hub .pt-list[data-state="loading"] .pt-state--loading .pt-card--skeleton {
  min-height: 180px;
  border-radius: 24px;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-list-grid {
  display: grid;
  gap: 20px;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hub-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hub-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hub-card.is-live,
.pt-app-shell .pt-appointments-hub .pt-appointment-hero-card.is-live {
  border-color: rgba(20, 184, 166, 0.24);
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.08) 0%, #ffffff 100%);
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hub-card.is-past {
  background: #fbfdff;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hub-card.is-cancelled {
  background: #fcfcfd;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hub-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hub-card__title {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #0f172a;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hub-card__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: #64748b;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-hub-card__meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pt-app-shell .pt-appointments-hub .pt-status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.pt-app-shell .pt-appointments-hub .pt-status-chip--live {
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
}

.pt-app-shell .pt-appointments-hub .pt-status-chip--confirmed {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}

.pt-app-shell .pt-appointments-hub .pt-status-chip--soon {
  background: rgba(245, 158, 11, 0.14);
  color: #d97706;
}

.pt-app-shell .pt-appointments-hub .pt-status-chip--completed {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.pt-app-shell .pt-appointments-hub .pt-status-chip--cancelled {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.pt-app-shell .pt-appointments-hub .pt-appointment-feedback {
  padding: 28px;
  max-width: 560px;
}

.pt-app-shell .pt-psychologists-page .pt-psych-card-shell--skeleton {
  gap: 18px;
}

.pt-app-shell .pt-psychologists-page .pt-psych-skeleton__top {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 110px;
  gap: 16px;
  align-items: start;
}

.pt-app-shell .pt-psychologists-page .pt-psych-skeleton__avatar {
  width: 84px;
  height: 84px;
  min-height: 84px;
  border-radius: 22px;
}

.pt-app-shell .pt-psychologists-page .pt-psych-skeleton__body {
  display: grid;
  gap: 10px;
}

.pt-app-shell .pt-psychologists-page .pt-psych-skeleton__line {
  min-height: 14px;
}

.pt-app-shell .pt-psychologists-page .pt-psych-skeleton__line--title {
  min-height: 22px;
  width: 72%;
}

.pt-app-shell .pt-psychologists-page .pt-psych-skeleton__line--meta {
  width: 58%;
}

.pt-app-shell .pt-psychologists-page .pt-psych-skeleton__line--long {
  width: 82%;
}

.pt-app-shell .pt-psychologists-page .pt-psych-skeleton__pill {
  min-height: 38px;
}

.pt-app-shell .pt-psychologists-page .pt-psych-skeleton__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pt-app-shell .pt-psychologists-page .pt-psych-skeleton__chip {
  width: 110px;
  min-height: 34px;
}

.pt-app-shell .pt-psychologists-page .pt-psych-skeleton__meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pt-app-shell .pt-psychologists-page .pt-psych-skeleton__meta {
  min-height: 78px;
}

.pt-app-shell .pt-psychologists-page .pt-psych-skeleton__actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.pt-app-shell .pt-psychologists-page .pt-psych-skeleton__button {
  min-height: 46px;
  flex: 0 0 150px;
}

.pt-app-shell .pt-chat-thread-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pt-app-shell .pt-chat-thread-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.pt-app-shell .pt-chat-thread-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pt-app-shell .pt-chat-thread-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.pt-app-shell .pt-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pt-app-shell .pt-mini-stat {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #fff;
  padding: 18px 20px;
}

.pt-app-shell .pt-mini-stat__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 8px;
}

.pt-app-shell .pt-mini-stat__value {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  color: #0f172a;
}

.pt-app-shell .pt-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pt-app-shell .pt-timeline-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
}

.pt-app-shell .pt-timeline-item__dot {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--primary-color);
  box-shadow: 0 0 0 6px rgba(135, 205, 109, 0.14);
}

.pt-app-shell .pt-timeline-item__body {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.pt-app-shell .pt-timeline-list > .pt-timeline-item:last-child .pt-timeline-item__body {
  border-bottom: 0;
  padding-bottom: 0;
}

.pt-app-shell .pt-timeline-item__title {
  font-size: 20px;
  margin-bottom: 8px;
}

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

.pt-app-shell .pt-achievements-grid--compact {
  grid-template-columns: 1fr;
}

.pt-app-shell .pt-achievement-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #fff;
  padding: 18px 20px;
}

.pt-app-shell .pt-achievement-card.is-locked {
  opacity: 0.72;
}

.pt-app-shell .pt-achievement-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(135, 205, 109, 0.14);
  color: var(--primary-color);
  font-size: 18px;
  flex: 0 0 auto;
}

.pt-app-shell .pt-achievement-card__title {
  font-size: 18px;
  margin-bottom: 6px;
}

.pt-app-shell .pt-achievement-card__text {
  margin: 0;
  color: #64748b;
}

@media (max-width: 767.98px) {
  .pt-app-shell #app-content {
    min-height: auto;
    padding-bottom: 90px;
  }

  .pt-app-shell .pt-home {
    padding: 24px 0 90px;
  }

  .pt-app-shell .pt-home-hero-card {
    padding: 24px;
    border-radius: 18px;
  }

  .pt-app-shell .pt-home-dashboard .pt-card {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .pt-app-shell .pt-home-dashboard .pt-card__title {
    font-size: 18px;
  }

  .pt-app-shell .pt-home-section-intro__title {
    font-size: 20px;
  }

  .pt-app-shell .pt-zone-page {
    padding: 24px 0 90px;
  }

  .pt-app-shell .pt-zone-hero {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .pt-app-shell .pt-zone-hero__actions {
    margin-left: 0;
  }

  .pt-app-shell .pt-zone-grid {
    grid-template-columns: 1fr;
  }

  .pt-app-shell .pt-care-dashboard__hero,
  .pt-app-shell .pt-care-dashboard__action-card,
  .pt-app-shell .pt-care-dashboard__report-card {
    padding: 22px;
  }

  .pt-app-shell .pt-care-dashboard__hero-meta,
  .pt-app-shell .pt-care-dashboard__grid,
  .pt-app-shell .pt-care-dashboard__section--secondary .pt-care-dashboard__report-card {
    grid-template-columns: 1fr;
  }

  .pt-app-shell .pt-home-actions__grid,
  .pt-app-shell .pt-home-discover__grid {
    grid-template-columns: 1fr;
  }

  .pt-app-shell .pt-overview-grid,
  .pt-app-shell .pt-achievements-grid,
  .pt-app-shell .pt-home-stats {
    grid-template-columns: 1fr;
  }

  .pt-app-shell .pt-zone-card__actions,
  .pt-app-shell .pt-psych-discovery__filters {
    flex-direction: column;
  }

  .pt-app-shell .pt-psychologists-page .pt-page-title {
    font-size: 32px;
    line-height: 42px;
  }

  .pt-app-shell .pt-psychologists-page .pt-page-subtitle {
    font-size: 16px;
    line-height: 26px;
  }

  .pt-app-shell .pt-appointments-hub .pt-page-title {
    font-size: 32px;
    line-height: 42px;
  }

  .pt-app-shell .pt-appointments-hub .pt-page-subtitle {
    font-size: 16px;
    line-height: 26px;
  }

  .pt-app-shell .pt-appointments-hub .pt-page-head {
    margin-bottom: 24px;
  }

  .pt-app-shell .pt-appointments-hub .pt-appointment-hero-card,
  .pt-app-shell .pt-appointments-hub .pt-appointment-hub-card {
    padding: 22px;
  }

  .pt-app-shell .pt-appointments-hub .pt-appointment-hero-card,
  .pt-app-shell .pt-appointments-hub .pt-appointment-hero-card__meta,
  .pt-app-shell .pt-appointments-hub .pt-appointment-hub-card__meta-grid {
    grid-template-columns: 1fr;
  }

  .pt-app-shell .pt-appointments-hub .pt-appointment-hero-card__aside,
  .pt-app-shell .pt-appointments-hub .pt-appointment-hub-card__head {
    justify-items: start;
    flex-direction: column;
    align-items: flex-start;
  }

  .pt-app-shell .pt-appointments-hub .pt-appointment-hero-card__actions,
  .pt-app-shell .pt-appointments-hub .pt-appointment-hub-card__actions {
    flex-direction: column;
  }

  .pt-app-shell .pt-psychologists-page .pt-psych-discovery {
    padding: 24px 26px;
  }

  .pt-app-shell .pt-psychologists-page .pt-list[data-state="loading"] .pt-state--loading,
  .pt-app-shell .pt-psychologists-page .pt-psych-list-grid,
  .pt-app-shell .pt-psychologists-page .pt-psych-detail-grid {
    grid-template-columns: 1fr;
  }

  .pt-app-shell .pt-psychologists-page .pt-psych-discovery__top,
  .pt-app-shell .pt-psychologists-page .pt-psych-discovery__controls {
    grid-template-columns: 1fr;
  }

  .pt-app-shell .pt-psychologists-page .pt-psych-discovery__top {
    flex-direction: column;
    align-items: stretch;
  }

  .pt-app-shell .pt-psychologists-page .pt-psych-discovery__controls {
    justify-content: stretch;
    gap: 12px;
  }

  .pt-app-shell .pt-psychologists-page .pt-psych-control {
    min-width: 0;
  }

  .pt-app-shell .pt-psychologists-page .pt-psych-quick-filters {
    margin-top: 14px;
  }

  .pt-app-shell .pt-psychologists-page .pt-psych-card-shell__top,
  .pt-app-shell .pt-psychologists-page .pt-psychologist--card {
    flex-direction: column;
  }

  .pt-app-shell .pt-psychologists-page .pt-psych-metrics {
    justify-items: start;
  }

  .pt-app-shell .pt-psychologists-page .pt-psych-card-shell__actions {
    flex-direction: column;
  }

  .pt-app-shell .pt-psychologists-page .pt-psych-skeleton__top,
  .pt-app-shell .pt-psychologists-page .pt-psych-skeleton__meta-grid,
  .pt-app-shell .pt-psychologists-page .pt-psych-skeleton__actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-info-bar,
  .pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-layout {
    grid-template-columns: 1fr;
  }

  .pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-side {
    position: static;
  }

  .pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-hero__identity {
    grid-template-columns: 1fr;
  }

  .pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-hero__avatar {
    width: 96px;
    height: 96px;
  }

  .pt-app-shell .pt-chat-thread-card__head,
  .pt-app-shell .pt-chat-thread-card__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .pt-app-shell .pt-app-footer__inner,
  .pt-app-shell .pt-app-footer__links {
    flex-direction: column;
  }
}

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

  .pt-app-shell .pt-appointments-hub .pt-appointment-hero-card {
    grid-template-columns: 1fr;
  }

  .pt-app-shell .pt-appointments-hub .pt-appointment-hero-card__aside {
    justify-items: start;
  }

  .pt-app-shell .pt-appointments-hub .pt-appointment-hub-card__meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pt-app-shell .pt-care-dashboard__hero-meta,
  .pt-app-shell .pt-care-dashboard__grid,
  .pt-app-shell .pt-care-dashboard__section--secondary .pt-care-dashboard__report-card {
    grid-template-columns: 1fr;
  }

  .pt-app-shell .pt-psychologists-page .pt-psych-discovery__top {
    flex-direction: column;
    align-items: stretch;
  }

  .pt-app-shell .pt-psychologists-page .pt-psych-discovery__controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pt-app-shell .pt-psychologists-page .pt-psych-list-grid,
  .pt-app-shell .pt-psychologists-page .pt-list[data-state="loading"] .pt-state--loading {
    grid-template-columns: 1fr;
  }

  .pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-hero,
  .pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-section,
  .pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-booking {
    padding: 22px;
  }

  .pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-hero__name {
    font-size: 34px;
    line-height: 42px;
  }

  .pt-app-shell .pt-psychologist-detail-page .pt-psych-detail-info-bar {
    gap: 10px;
  }
}
