.sb-root {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #0f172a;
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
  max-width: 960px;
  margin: 24px auto;
}

/* Step indicator */
.sb-step-indicator {
  margin-bottom: 20px;
}

.sb-step-indicator-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
}

.sb-step-indicator-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sb-step-indicator-item:not(:last-child)::after {
  content: "→";
  margin-left: 8px;
  color: #94a3b8;
}

.sb-step-indicator-label {
  padding: 4px 8px;
  border-radius: 6px;
}

.sb-step-indicator-done .sb-step-indicator-label {
  color: #059669;
}

.sb-step-indicator-current .sb-step-indicator-label {
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 600;
}

/* Sticky summary bar */
.sb-sticky-summary {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 16px;
  margin: 0 -20px 16px -20px;
  background: #e0f2fe;
  border: 1px solid #7dd3fc;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.15);
}

.sb-sticky-summary-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0c4a6e;
}

.sb-sticky-book {
  flex-shrink: 0;
}

/* Itinerary total */
.sb-itinerary-total {
  margin-bottom: 16px;
  padding: 12px 16px;
  background: #f1f5f9;
  border-radius: 8px;
  font-size: 1.1rem;
}

.sb-itinerary-total-note {
  display: block;
  font-size: 0.85rem;
  font-weight: normal;
  color: #64748b;
  margin-top: 4px;
}

/* Trust and safety lines */
.sb-trust-line,
.sb-safety-line {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  color: #475569;
  margin: 0 0 12px;
}

.sb-safety-line {
  margin-bottom: 16px;
  font-weight: 500;
  color: #0f172a;
}

/* Field-level validation */
.sb-field-error {
  display: block;
  font-size: 0.85rem;
  color: #dc2626;
  margin-top: 4px;
}

/* Contact alternative */
.sb-contact-alternative {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  color: #64748b;
  margin: 0 0 8px;
}

.sb-contact-link {
  color: #2563eb;
  text-decoration: underline;
}

.sb-contact-link:hover {
  color: #1d4ed8;
}

/* Itinerary action buttons row */
.sb-itinerary-actions-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.sb-header {
  margin-bottom: 16px;
}

.sb-title {
  margin: 0 0 4px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
}

.sb-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: #64748b;
}

.sb-section {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.sb-section-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}

.sb-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px 14px;
  background: #e2e8f0;
  border-radius: 10px;
}

.sb-date-label {
  font-size: 0.9rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sb-date-input {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #cbd5f5;
  font-size: 0.9rem;
}

.sb-calendar-wrap {
  width: 100%;
}

.sb-calendar {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  max-width: 320px;
}

/* Small calendar: fixed size so content cannot overflow (enlarged for readability) */
.sb-calendar-sm {
  box-sizing: border-box;
  width: 224px;
  max-width: 100%;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.sb-calendar-sm .sb-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 28px;
  margin-bottom: 6px;
  min-height: 28px;
}

.sb-calendar-sm .sb-calendar-title {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  line-height: 28px;
  flex: 1;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sb-calendar-sm .sb-calendar-nav {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #f1f5f9;
  color: #475569;
  cursor: pointer;
}

.sb-calendar-sm .sb-calendar-nav:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.sb-calendar-sm .sb-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 28px);
  gap: 0;
  margin-bottom: 4px;
  width: 196px;
}

.sb-calendar-sm .sb-calendar-weekday {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-align: center;
  line-height: 16px;
  height: 16px;
}

.sb-calendar-sm .sb-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 28px);
  grid-template-rows: repeat(6, 26px);
  gap: 0;
  width: 196px;
  height: 156px;
}

.sb-calendar-sm .sb-calendar-day {
  width: 28px;
  height: 26px;
  min-width: 28px;
  min-height: 26px;
  max-width: 28px;
  max-height: 26px;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 26px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #0f172a;
  cursor: default;
  box-sizing: border-box;
}

.sb-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.sb-calendar-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

.sb-calendar-nav {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #f1f5f9;
  border-radius: 8px;
  font-size: 1.2rem;
  color: #475569;
  cursor: pointer;
  line-height: 1;
}

.sb-calendar-nav:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.sb-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}

.sb-calendar-weekday {
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  text-align: center;
}

.sb-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.sb-calendar-day {
  aspect-ratio: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #0f172a;
  background: transparent;
  cursor: default;
}

.sb-calendar-day-other {
  color: #94a3b8;
}

.sb-calendar-day-available {
  background: #e0f2fe;
  color: #0369a1;
  cursor: pointer;
}

.sb-calendar-day-available:hover:not([aria-disabled="true"]) {
  background: #0ea5e9;
  color: #fff;
}

.sb-calendar-day-selected {
  background: #2563eb;
  color: #fff;
  font-weight: 600;
}

.sb-calendar-day[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.6;
}

.sb-sessions-container {
  min-height: 80px;
}

.sb-empty {
  font-size: 0.95rem;
  color: #475569;
}

.sb-session-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  overflow: visible;
}

.sb-session-card-button {
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
}

.sb-session-card {
  background: white;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
  cursor: pointer;
  width: 100%;
  height: 200px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.sb-session-card-active .sb-session-card {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3);
}

/* Add-on cards: enlarge on hover and show full description */
.sb-bolton-card-button {
  transition: transform 0.2s ease;
}

.sb-bolton-card-button:hover .sb-session-card {
  min-height: 200px;
  height: auto;
  overflow: visible;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  z-index: 2;
  position: relative;
}

.sb-bolton-card-button:hover .sb-session-meta {
  overflow: visible;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  display: block;
}

/* Yoga add-on: always expanded when selected so radial options don't overflow */
.sb-bolton-card-button.sb-yoga-selected .sb-session-card {
  min-height: 200px;
  height: auto;
  overflow: visible;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  z-index: 2;
  position: relative;
}

.sb-bolton-card-button.sb-yoga-selected .sb-session-meta {
  overflow: visible;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  display: block;
}

.sb-session-title {
  margin: 0 0 4px;
  font-size: 1rem;
  color: #0f172a;
  flex-shrink: 0;
  line-height: 1.3;
}

.sb-session-time {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: #1d4ed8;
  font-weight: 600;
  flex-shrink: 0;
}

.sb-session-meta {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-clamp: 4;
}

.sb-boltons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 10px;
}

.sb-yoga-options {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-transform: none;
}

.sb-yoga-option-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 2px;
  text-transform: none;
}

.sb-bolton-option {
  font-size: 0.9rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: none;
}

.sb-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background: #2563eb;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.sb-primary-button:disabled {
  opacity: 0.6;
  cursor: default;
}

.sb-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #2563eb;
  background: transparent;
  color: #2563eb;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  margin-left: 8px;
}

.sb-form-static {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

.sb-itinerary-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1d4ed8;
  margin-top: 4px;
}

.sb-itinerary-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sb-itinerary-heading {
  margin: 0;
}

.sb-itinerary-header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.sb-copy-feedback {
  font-size: 0.9rem;
  color: #059669;
}

.sb-itinerary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.sb-itinerary-item {
  padding: 8px 10px;
  border-radius: 8px;
  background: #e5f0ff;
  margin-bottom: 6px;
}

.sb-itinerary-main {
  font-size: 0.95rem;
}

.sb-itinerary-boltons {
  font-size: 0.85rem;
  color: #475569;
}

.sb-itinerary-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.sb-itinerary-group-edit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #0f172a;
}

.sb-itinerary-group-label {
  white-space: nowrap;
}

.sb-itinerary-group-edit input {
  width: 3.5em;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  font-size: 0.9rem;
}

.sb-enquiry-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px 16px;
  align-items: flex-end;
}

.sb-form-row label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9rem;
  color: #0f172a;
}

.sb-form-row input {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #cbd5f5;
  font-size: 0.9rem;
}

.sb-form-row textarea {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #cbd5f5;
  font-size: 0.9rem;
  min-height: 80px;
  resize: vertical;
}

.sb-form-row-full {
  grid-column: 1 / -1;
}

.sb-submit-message {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  color: #0f172a;
  margin-top: 4px;
}

.sb-submit-success-heading {
  grid-column: 1 / -1;
  font-size: 1.1rem;
  font-weight: 600;
  color: #059669;
  margin: 8px 0 4px 0;
}

.sb-submit-message-success {
  color: #047857;
  font-weight: 500;
}

.sb-submit-message-error {
  color: #dc2626;
  font-weight: 500;
}

.sb-addons-read-more {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: #2f1f16;
  text-decoration: none;
  margin-top: 4px;
}

.sb-addons-read-more:hover {
  color: #ca5635;
  text-decoration: underline;
}

/* Mobile-friendly: touch targets, stacked layout, full-width controls */
@media (max-width: 640px) {
  .sb-root {
    margin: 0;
    padding: 16px;
    border-radius: 0;
    min-height: 100vh;
    box-sizing: border-box;
  }

  .sb-header {
    margin-bottom: 20px;
  }

  .sb-title {
    font-size: 1.35rem;
  }

  .sb-subtitle {
    font-size: 0.9rem;
  }

  .sb-section {
    margin-top: 20px;
    padding-top: 16px;
  }

  .sb-section-title {
    font-size: 1rem;
  }

  .sb-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
  }

  .sb-date-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .sb-date-label input,
  .sb-date-input {
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
  }

  .sb-session-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sb-session-card {
    height: 200px;
    min-height: 200px;
    padding: 14px 16px;
  }

  .sb-session-card-button {
    min-height: 44px;
  }

  .sb-primary-button,
  .sb-secondary-button {
    min-height: 44px;
    padding: 12px 20px;
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 4px;
  }

  .sb-secondary-button {
    margin-left: 0;
  }

  .sb-calendar-wrap {
    width: 100%;
  }

  .sb-calendar {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .sb-calendar-day {
    min-height: 40px;
    font-size: 0.9rem;
  }

  .sb-calendar-nav {
    min-width: 44px;
    min-height: 44px;
  }

  .sb-itinerary-section-header {
    flex-direction: column;
    align-items: stretch;
  }

  .sb-itinerary-header-actions {
    flex-direction: column;
  }

  .sb-itinerary-header-actions .sb-secondary-button {
    width: 100%;
  }

  .sb-itinerary-item {
    padding: 12px 14px;
  }

  .sb-itinerary-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .sb-itinerary-group-edit input {
    max-width: 80px;
  }

  .sb-itinerary-actions .sb-secondary-button {
    width: 100%;
  }

  .sb-enquiry-form {
    grid-template-columns: 1fr;
  }

  .sb-form-row input,
  .sb-form-row textarea {
    min-height: 44px;
  }

  .sb-form-row textarea {
    min-height: 100px;
  }

  .sb-bolton-option {
    min-height: 44px;
    align-items: center;
  }

  .sb-sticky-summary {
    margin-left: -16px;
    margin-right: -16px;
    padding: 12px 14px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sb-root {
    scroll-behavior: auto;
  }
}

/* Print: show itinerary and summary only, hide builder UI */
@media print {
  .sb-step-indicator,
  .sb-sticky-summary,
  .sb-header,
  .sb-section:not(.sb-itinerary-section) {
    display: none !important;
  }

  .sb-root {
    box-shadow: none;
    padding: 0;
    max-width: 100%;
  }

  .sb-itinerary-section {
    border: none;
    padding-top: 0;
    margin-top: 0;
  }

  .sb-itinerary-section-header {
    margin-bottom: 8px;
  }

  .sb-itinerary-header-actions .sb-secondary-button,
  .sb-enquiry-form .sb-primary-button,
  .sb-enquiry-form .sb-secondary-button,
  .sb-itinerary-actions-row,
  .sb-enquiry-form input,
  .sb-enquiry-form textarea,
  .sb-enquiry-form label,
  .sb-trust-line,
  .sb-safety-line,
  .sb-contact-alternative {
    display: none !important;
  }

  .sb-itinerary-list,
  .sb-itinerary-item {
    break-inside: avoid;
  }

  .sb-itinerary-total {
    margin-top: 12px;
  }
}

/* Booking path (open vs private) */
.booking-path-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

@media (max-width: 640px) {
  .booking-path-tabs {
    grid-template-columns: 1fr;
  }
}

.booking-path-tabs__card {
  text-align: left;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.booking-path-tabs__card:hover {
  border-color: #0ea5e9;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.12);
}

.booking-path-tabs__card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #0f172a;
}

.booking-path-tabs__card p {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

.booking-path-tabs__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 10px;
  background: #e0f2fe;
  color: #0369a1;
}

.booking-path-tabs__card--private .booking-path-tabs__badge {
  background: #f1f5f9;
  color: #475569;
}

.sb-public-booking {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sb-public-booking__intro {
  margin-top: 0;
}

.sb-public-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.sb-public-filters .sb-form-row select,
.sb-public-filters .sb-form-row input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  font-size: 0.9rem;
  margin-top: 4px;
}

.sb-public-session-list {
  gap: 16px;
}

.sb-public-booking__form {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.sb-public-booking__summary {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: #475569;
}

.sb-public-enquiry-form {
  margin-top: 8px;
}

.sb-public-booking__total {
  font-weight: 600;
  margin: 0;
  color: #0f172a;
}

.public-swim-card__badge,
.open-swim-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
  background: #d1fae5;
  color: #047857;
}

.sb-back-link,
.sb-booking-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin: 0 0 16px;
  border-radius: 999px;
  border: 1px solid #2563eb;
  background: transparent;
  color: #2563eb;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.3;
  cursor: pointer;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.sb-back-link:hover,
.sb-back-link:focus-visible,
.sb-booking-back:hover,
.sb-booking-back:focus-visible {
  background: #eff6ff;
  color: #1d4ed8;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
}

.sb-empty-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 12px;
}

.sb-empty-actions__or {
  font-size: 0.9rem;
  color: #64748b;
}

.sb-empty-actions__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.sb-empty-actions__link:hover,
.sb-empty-actions__link:focus-visible {
  text-decoration: underline;
}

.sb-private-pricing-note,
.sb-pricing-footnote {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0 0 16px;
  max-width: 42rem;
}

.sb-public-booking__total {
  font-weight: 600;
  margin: 12px 0;
}

.sb-admin-panel {
  margin-bottom: 24px;
  padding: 16px;
  border: 2px dashed #f59e0b;
  border-radius: 10px;
  background: #fffbeb;
}

.sb-admin-panel__head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.sb-admin-panel__title {
  margin: 0;
  flex: 1 1 100%;
  font-size: 1.1rem;
}

.sb-admin-session-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.sb-admin-session-item {
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sb-admin-session-item__actions {
  display: flex;
  gap: 8px;
}

.sb-admin-form {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sb-admin-form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9rem;
}

.sb-admin-form input,
.sb-admin-form select,
.sb-admin-form textarea {
  padding: 8px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
}

.sb-admin-form__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

