.module-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
}

.module-header {
  position: static;
  background: var(--color-surface);
  border-bottom: 1px solid rgba(44, 31, 20, 0.08);
}

.module-header__inner,
.module-footer__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.module-main {
  flex: 1;
  padding-block: var(--space-xl);
}

.module-intro {
  max-width: 760px;
  margin-bottom: var(--space-lg);
}

.module-intro h1 {
  margin-bottom: var(--space-sm);
}

.module-intro p {
  color: var(--color-text-muted);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

.panel {
  background: var(--color-surface);
  border: 1px solid rgba(44, 31, 20, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: 0 8px 30px rgba(44, 31, 20, 0.05);
}

.panel h2,
.panel h3 {
  margin-bottom: var(--space-md);
}

.panel--summary {
  position: sticky;
  top: var(--space-md);
}

.form-section + .form-section {
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(44, 31, 20, 0.08);
}

.form-section {
  padding: 0;
}

.module-page .btn--primary,
.admin-page .btn--primary {
  color: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label,
.form-label {
  font-weight: 500;
  font-size: var(--text-sm);
}

.form-field input,
.form-field select,
.form-field textarea,
.admin-table input,
.admin-table select {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(44, 31, 20, 0.22);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
  font: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-primary);
  outline: 2px solid rgba(47, 111, 115, 0.18);
}

.date-picker-field {
  position: relative;
}

.date-picker-field input[type="date"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.date-picker-trigger {
  width: 100%;
  min-height: 50px;
  padding: 0.7rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  border: 1px solid rgba(44, 31, 20, 0.22);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
  font: inherit;
  text-align: left;
}

.date-picker-trigger:hover,
.date-picker-trigger[aria-expanded="true"] {
  border-color: var(--color-primary);
}

.date-picker-trigger:focus-visible {
  outline: 2px solid rgba(47, 111, 115, 0.24);
  outline-offset: 2px;
}

.date-picker-trigger__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-primary);
}

.date-picker {
  position: absolute;
  z-index: 80;
  top: calc(100% + 0.5rem);
  left: 0;
  width: min(100%, 22rem);
  padding: var(--space-sm);
  border: 1px solid rgba(44, 31, 20, 0.12);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 20px 50px rgba(44, 31, 20, 0.16);
}

.date-picker__header,
.date-picker__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xs);
}

.date-picker__header {
  margin-bottom: var(--space-sm);
}

.date-picker__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
}

.date-picker__nav,
.date-picker__today {
  border: 0;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
}

.date-picker__nav {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.date-picker__nav:hover:not(:disabled),
.date-picker__today:hover:not(:disabled) {
  background: rgba(47, 111, 115, 0.11);
}

.date-picker__nav:disabled,
.date-picker__today:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.date-picker__weekdays,
.date-picker__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.2rem;
}

.date-picker__weekdays {
  margin-bottom: 0.25rem;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  text-align: center;
}

.date-picker__day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-size: var(--text-sm);
  cursor: pointer;
}

.date-picker__day:hover:not(:disabled) {
  background: rgba(47, 111, 115, 0.12);
}

.date-picker__day.is-today {
  box-shadow: inset 0 0 0 1px var(--color-primary);
}

.date-picker__day.is-selected {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(47, 111, 115, 0.28);
}

.date-picker__day.is-outside {
  color: rgba(44, 31, 20, 0.35);
}

.date-picker__day:disabled {
  color: rgba(44, 31, 20, 0.2);
  cursor: not-allowed;
}

.date-picker__footer {
  margin-top: var(--space-xs);
  padding-top: var(--space-xs);
  border-top: 1px solid rgba(44, 31, 20, 0.08);
}

.date-picker__today {
  padding: 0.45rem 0.7rem;
  color: var(--color-primary);
  font: inherit;
  font-size: var(--text-xs);
  font-weight: 500;
}

.form-help {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.choice-grid,
.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xs);
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice label {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-sm);
  border: 1px solid rgba(44, 31, 20, 0.14);
  border-radius: var(--radius-md);
  background: #fff;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.choice input:checked + label {
  border-color: var(--color-primary);
  background: rgba(47, 111, 115, 0.08);
}

.choice input:focus-visible + label {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.choice__meta {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.slot-button {
  padding: 0.7rem;
  border: 1px solid rgba(44, 31, 20, 0.16);
  border-radius: var(--radius-full);
  background: #fff;
  color: var(--color-text);
}

.slot-button:hover,
.slot-button.is-selected {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: var(--space-xs);
}

.check-row input {
  margin-top: 0.35rem;
  flex: 0 0 auto;
}

.check-row label {
  font-size: var(--text-sm);
}

.check-row a {
  color: var(--color-primary);
  text-decoration: underline;
}

.summary-list {
  display: grid;
  gap: 0.65rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(44, 31, 20, 0.08);
}

.summary-row span:first-child {
  color: var(--color-text-muted);
}

.summary-row strong {
  text-align: right;
}

.alert {
  padding: 0.9rem 1rem;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid;
}

.alert--success {
  color: #245B5F;
  background: rgba(47, 111, 115, 0.13);
  border-color: var(--color-primary);
}

.alert--error {
  color: #904B3A;
  background: rgba(180, 106, 85, 0.14);
  border-color: var(--color-accent);
}

.alert--info {
  color: #7A5C20;
  background: rgba(198, 161, 91, 0.16);
  border-color: var(--color-secondary);
}

.status-card {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.status-card .status-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 111, 115, 0.13);
  color: #245B5F;
  font-size: 1.7rem;
}

.status-card .status-icon--pending {
  color: #7A5C20;
  background: rgba(198, 161, 91, 0.16);
}

.status-card .status-icon--error {
  color: #904B3A;
  background: rgba(180, 106, 85, 0.16);
}

.status-card p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.legal-content {
  max-width: 820px;
  margin-inline: auto;
}

.legal-content h1,
.legal-content h2 {
  margin-bottom: var(--space-sm);
}

.legal-content h2 {
  margin-top: var(--space-lg);
  font-size: var(--text-2xl);
}

.legal-content p,
.legal-content li {
  color: var(--color-text-muted);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-updated {
  margin-bottom: var(--space-md);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.has-open-modal {
  overflow: hidden;
}

.legal-modal-layer {
  position: fixed;
  z-index: 400;
  inset: 0;
  padding: var(--space-md);
  display: grid;
  place-items: center;
  background: rgba(44, 31, 20, 0.58);
  backdrop-filter: blur(4px);
}

.legal-modal {
  width: min(100%, 54rem);
  max-height: min(88vh, 54rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(44, 31, 20, 0.1);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: 0 28px 80px rgba(44, 31, 20, 0.3);
  animation: legal-modal-in 180ms ease-out both;
}

.legal-modal__header {
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  border-bottom: 1px solid rgba(44, 31, 20, 0.09);
}

.legal-modal__header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
}

.legal-modal__close {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(44, 31, 20, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--color-text);
  font: inherit;
  font-size: 1.5rem;
  cursor: pointer;
}

.legal-modal__close:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.legal-modal__close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.legal-modal__body {
  max-width: none;
  padding: var(--space-md);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.legal-modal__body h2 {
  margin-top: var(--space-md);
  font-size: var(--text-xl);
}

.legal-modal__body p,
.legal-modal__body li {
  font-size: var(--text-sm);
  line-height: 1.75;
}

@keyframes legal-modal-in {
  from { opacity: 0; transform: translateY(0.75rem) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.module-footer {
  background: var(--color-text);
  color: var(--color-bg);
}

.module-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: var(--text-sm);
}

.module-footer a:hover {
  color: var(--color-primary);
}

.loading-text {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

[hidden] {
  display: none !important;
}

@media (min-width: 720px) {
  .form-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .slot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .booking-layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  }
}

@media (max-width: 560px) {
  .module-header__inner,
  .module-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: var(--space-sm);
  }

  .date-picker {
    position: fixed;
    inset: auto 0 0;
    width: 100%;
    padding: var(--space-md);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -16px 40px rgba(44, 31, 20, 0.18);
  }

  .toast-stack {
    top: var(--space-sm);
    right: var(--space-sm);
    width: calc(100vw - (2 * var(--space-sm)));
  }

  .legal-modal-layer {
    padding: 0;
    place-items: end center;
  }

  .legal-modal {
    width: 100%;
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .legal-modal__header,
  .legal-modal__body {
    padding: var(--space-sm);
  }
}

.admin-page {
  background: var(--color-bg);
}

.admin-shell {
  min-height: 100vh;
}

.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 120;
  width: 260px;
  padding: var(--space-md);
  display: none;
  flex-direction: column;
  background: var(--color-text);
  color: var(--color-bg);
}

.admin-sidebar.is-open {
  display: flex;
}

.admin-brand {
  display: flex;
  flex-direction: column;
  padding: var(--space-sm);
  margin-bottom: var(--space-md);
}

.admin-brand strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
}

.admin-brand span {
  color: rgba(250, 247, 242, 0.55);
  font-size: var(--text-xs);
}

.admin-nav {
  display: grid;
  gap: 0.2rem;
}

.admin-nav a {
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-md);
  color: rgba(250, 247, 242, 0.72);
  font-size: var(--text-sm);
}

.admin-nav a:hover,
.admin-nav a.is-active {
  color: #fff;
  background: rgba(47, 111, 115, 0.3);
}

.admin-sidebar__footer {
  margin-top: auto;
  padding: var(--space-sm);
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  color: rgba(250, 247, 242, 0.55);
}

.admin-sidebar__footer form,
.admin-sidebar__footer button {
  margin: 0;
}

.admin-sidebar__footer button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.admin-mobile-header {
  min-height: 68px;
  padding: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-surface);
  border-bottom: 1px solid rgba(44, 31, 20, 0.08);
}

.admin-content {
  min-width: 0;
  padding: var(--space-md);
}

.admin-content__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.admin-content__header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.toast-stack {
  position: fixed;
  z-index: 300;
  top: var(--space-md);
  right: var(--space-md);
  width: min(calc(100vw - 2rem), 25rem);
  display: grid;
  gap: var(--space-xs);
  pointer-events: none;
}

.toast {
  min-height: 64px;
  padding: 0.85rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(44, 31, 20, 0.08);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 16px 42px rgba(44, 31, 20, 0.18);
  pointer-events: auto;
  animation: toast-in 220ms ease-out both;
  transition: opacity 200ms ease, transform 200ms ease;
}

.toast.is-leaving {
  opacity: 0;
  transform: translateX(1rem);
}

.toast__icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 111, 115, 0.16);
  color: #245B5F;
  font-weight: 700;
}

.toast--error .toast__icon {
  background: rgba(180, 106, 85, 0.16);
  color: #904B3A;
}

.toast p {
  margin: 0;
  font-size: var(--text-sm);
}

.toast__close {
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--color-text-muted);
  font: inherit;
  font-size: 1.35rem;
  cursor: pointer;
}

.toast__close:hover {
  background: rgba(44, 31, 20, 0.06);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(-0.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.metric-card {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid rgba(44, 31, 20, 0.08);
}

.metric-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  line-height: 1;
  color: var(--color-primary);
}

.metric-card span {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.table-wrap {
  overflow-x: auto;
  background: var(--color-surface);
  border: 1px solid rgba(44, 31, 20, 0.08);
  border-radius: var(--radius-lg);
}

.table-wrap details {
  max-width: 28rem;
}

.table-wrap pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: var(--text-xs);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.admin-table th,
.admin-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(44, 31, 20, 0.07);
  vertical-align: top;
}

.admin-table th {
  color: var(--color-text-muted);
  font-weight: 500;
  background: rgba(47, 111, 115, 0.05);
}

.admin-table a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.services-admin {
  display: grid;
  gap: var(--space-md);
}

.services-admin__form {
  width: 100%;
}

.services-list {
  min-width: 0;
}

.services-list__header {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-sm);
}

.services-list__header h2,
.services-list__header p {
  margin-bottom: 0;
}

.services-list__count {
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(47, 111, 115, 0.1);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  white-space: nowrap;
}

.services-table {
  table-layout: fixed;
}

.services-table th:first-child,
.services-table td:first-child {
  width: 42%;
}

.services-table th:nth-child(2),
.services-table td:nth-child(2),
.services-table th:nth-child(3),
.services-table td:nth-child(3) {
  width: 11%;
  white-space: nowrap;
}

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

.services-table th:last-child,
.services-table td:last-child {
  width: 12%;
  text-align: right;
}

.services-table__name,
.services-table__description {
  display: block;
}

.services-table__name {
  overflow-wrap: break-word;
}

.services-table__description {
  margin-top: 0.2rem;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  line-height: 1.45;
}

.services-table__actions .btn {
  text-decoration: none;
}

.status-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: #245B5F;
  background: rgba(47, 111, 115, 0.13);
}

.status-badge--warning {
  color: #7A5C20;
  background: rgba(198, 161, 91, 0.16);
}

.status-badge--error {
  color: #904B3A;
  background: rgba(180, 106, 85, 0.16);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.admin-actions form {
  display: inline;
}

.filter-bar {
  margin-bottom: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.filter-bar input,
.filter-bar select {
  min-height: 42px;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(44, 31, 20, 0.2);
  border-radius: var(--radius-md);
  background: #fff;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
}

.settings-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.settings-tabs a {
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid rgba(44, 31, 20, 0.1);
}

.settings-tabs a.is-active {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

#admin-calendar {
  min-height: 580px;
  background: var(--color-surface);
  padding: var(--space-sm);
  border-radius: var(--radius-lg);
}

@media (min-width: 900px) {
  .admin-sidebar {
    display: flex;
  }

  .admin-mobile-header {
    display: none;
  }

  .admin-content {
    margin-left: 260px;
    padding: var(--space-lg);
  }

  .metric-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .toast-stack {
    top: 5rem;
  }
}

@media (max-width: 720px) {
  .services-list__header {
    align-items: flex-start;
  }

  .services-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .services-table,
  .services-table tbody,
  .services-table tr,
  .services-table td {
    display: block;
    width: 100% !important;
  }

  .services-table thead {
    display: none;
  }

  .services-table tr {
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
    border: 1px solid rgba(44, 31, 20, 0.08);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: 0 8px 24px rgba(44, 31, 20, 0.04);
  }

  .services-table td {
    min-height: 0;
    padding: 0.55rem 0;
    display: grid;
    grid-template-columns: minmax(5.5rem, 0.35fr) minmax(0, 1fr);
    gap: var(--space-xs);
    border-bottom: 1px solid rgba(44, 31, 20, 0.07);
    text-align: left !important;
  }

  .services-table td::before {
    content: attr(data-label);
    color: var(--color-text-muted);
    font-size: var(--text-xs);
    font-weight: 500;
  }

  .services-table td:first-child {
    padding-top: 0;
  }

  .services-table td:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .services-table__description {
    grid-column: 2;
  }

  .services-table__actions .btn {
    justify-self: start;
  }
}
