
/* Go UI Core cleanup / consolidation pass
   Unifies dashboard, bookings, and settings under one shared CRM layer. */

.goappily-native-shell,
.goappily-settings-native-shell,
.goappily-booking-view-native-shell,
.goappily-dashboard-native-shell {
  padding: 16px;
  background: linear-gradient(180deg, var(--go-bg, #f4f7fb) 0%, var(--go-surface-soft, #f8fbff) 100%);
  border-radius: 18px;
}

.goappily-native-shell .go-brand,
.goappily-settings-native-shell .go-brand,
.goappily-booking-view-native-shell .go-brand,
.goappily-dashboard-native-shell .go-brand,
.goappily-settings-native-shell .goappily-settings-header.go-brand,
.goappily-dashboard-native-shell .goappily-header.go-brand {
  margin-bottom: 16px;
  border-top-left-radius: 18px;
border-top-right-radius: 18px;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
  box-shadow: 0 8px 24px rgba(15,35,55,.10);
}

.goappily-native-shell .go-card,
.goappily-settings-native-shell .go-card,
.goappily-booking-view-native-shell .go-card,
.goappily-dashboard-native-shell .go-card,
.goappily-booking-native-card,
.goappily-settings-panel.go-card,
.goappily-settings-section.go-card,
.goappily-health-card,
.goappily-tabs-card,
.goappily-settings-tabs-card {
  background: var(--go-surface, #fff);
  border: 1px solid var(--go-border, #d7e3f1);
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(15,35,55,.06);
  padding: 16px;
  margin-right: 2em;
    margin-left: 2em;
}

.goappily-native-shell .go-grid-2,
.goappily-settings-native-shell .go-grid-2,
.goappily-booking-view-native-shell .go-grid-2,
.goappily-dashboard-native-shell .go-grid-2,
.goappily-settings-grid.go-grid.go-grid-2,
.goappily-booking-tools.go-grid.go-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.goappily-native-shell .go-row,
.goappily-settings-native-shell .go-row,
.goappily-booking-view-native-shell .go-row,
.goappily-dashboard-native-shell .go-row,
.goappily-settings-native-shell .goappily-settings-tabs,
.goappily-dashboard-native-shell .goappily-tabs.goappily-tabs-native {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.goappily-settings-native-shell .goappily-settings-tab.go-btn.go-btn--ghost,
.goappily-dashboard-native-shell .goappily-tab.go-btn.go-btn--ghost {
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--go-text-soft, #4e6b86);
  box-shadow: none;
  padding: 10px 14px;
}

.goappily-settings-native-shell .goappily-settings-tab.go-btn.go-btn--ghost.active,
.goappily-settings-native-shell .goappily-settings-tab.go-btn.go-btn--ghost[aria-selected="true"],
.goappily-settings-native-shell .goappily-settings-tab.go-btn.go-btn--ghost.nav-tab-active,
.goappily-dashboard-native-shell .goappily-tab.go-btn.go-btn--ghost.active,
.goappily-dashboard-native-shell .goappily-tab.go-btn.go-btn--ghost[aria-selected="true"],
.goappily-dashboard-native-shell .goappily-tab.go-btn.go-btn--ghost.nav-tab-active {
  background: var(--go-primary-soft, #e8f4fd);
  color: var(--go-primary, #0e73b8);
  border-color: rgba(14,115,184,.16);
}

.goappily-native-shell table,
.goappily-settings-native-shell table,
.goappily-booking-view-native-shell table,
.goappily-dashboard-native-shell table,
.goappily-native-shell .go-table,
.goappily-settings-native-shell .go-table,
.goappily-booking-view-native-shell .go-table,
.goappily-dashboard-native-shell .go-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--go-border, #d7e3f1);
  border-radius: 14px;
  overflow: hidden;
  background: var(--go-surface, #fff);
}

.goappily-native-shell table th,
.goappily-settings-native-shell table th,
.goappily-booking-view-native-shell table th,
.goappily-dashboard-native-shell table th,
.goappily-native-shell .go-table thead th,
.goappily-settings-native-shell .go-table thead th,
.goappily-booking-view-native-shell .go-table thead th,
.goappily-dashboard-native-shell .go-table thead th {
  background: var(--go-surface-soft, #f8fbff);
  color: var(--go-text-soft, #4e6b86);
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--go-border, #d7e3f1);
}

.goappily-native-shell table td,
.goappily-settings-native-shell table td,
.goappily-booking-view-native-shell table td,
.goappily-dashboard-native-shell table td,
.goappily-native-shell .go-table tbody td,
.goappily-settings-native-shell .go-table tbody td,
.goappily-booking-view-native-shell .go-table tbody td,
.goappily-dashboard-native-shell .go-table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--go-border, #d7e3f1);
}

.goappily-native-shell table tr:last-child td,
.goappily-settings-native-shell table tr:last-child td,
.goappily-booking-view-native-shell table tr:last-child td,
.goappily-dashboard-native-shell table tr:last-child td,
.goappily-native-shell .go-table tbody tr:last-child td,
.goappily-settings-native-shell .go-table tbody tr:last-child td,
.goappily-booking-view-native-shell .go-table tbody tr:last-child td,
.goappily-dashboard-native-shell .go-table tbody tr:last-child td {
  border-bottom: 0;
}

.goappily-native-shell input[type="text"],
.goappily-native-shell input[type="email"],
.goappily-native-shell input[type="number"],
.goappily-native-shell input[type="url"],
.goappily-native-shell input[type="search"],
.goappily-native-shell input[type="date"],
.goappily-native-shell textarea,
.goappily-native-shell select,
.goappily-settings-native-shell input[type="text"],
.goappily-settings-native-shell input[type="email"],
.goappily-settings-native-shell input[type="number"],
.goappily-settings-native-shell input[type="url"],
.goappily-settings-native-shell input[type="search"],
.goappily-settings-native-shell input[type="date"],
.goappily-settings-native-shell textarea,
.goappily-settings-native-shell select,
.goappily-booking-view-native-shell input[type="text"],
.goappily-booking-view-native-shell input[type="email"],
.goappily-booking-view-native-shell input[type="number"],
.goappily-booking-view-native-shell input[type="url"],
.goappily-booking-view-native-shell input[type="search"],
.goappily-booking-view-native-shell input[type="date"],
.goappily-booking-view-native-shell textarea,
.goappily-booking-view-native-shell select {
  width: 100%;
  border: 1px solid var(--go-border, #d7e3f1);
  background: var(--go-surface, #fff);
  color: var(--go-text, #15324b);
  border-radius: 14px;
  padding: 12px 14px;
  outline: none;
  min-height: 42px;
}

.goappily-native-shell input:focus,
.goappily-native-shell textarea:focus,
.goappily-native-shell select:focus,
.goappily-settings-native-shell input:focus,
.goappily-settings-native-shell textarea:focus,
.goappily-settings-native-shell select:focus,
.goappily-booking-view-native-shell input:focus,
.goappily-booking-view-native-shell textarea:focus,
.goappily-booking-view-native-shell select:focus {
  border-color: var(--go-primary, #0e73b8);
  box-shadow: 0 0 0 3px var(--go-primary-soft, #e8f4fd);
}

.goappily-native-shell .button,
.goappily-native-shell .button-primary,
.goappily-settings-native-shell .button,
.goappily-settings-native-shell .button-primary,
.goappily-booking-view-native-shell .button,
.goappily-booking-view-native-shell .button-primary {
  border-radius: 14px;
}

@media (max-width: 782px) {
  .goappily-settings-native-shell .goappily-settings-tabs,
  .goappily-dashboard-native-shell .goappily-tabs.goappily-tabs-native {
    flex-direction: column;
    align-items: stretch;
  }

  .goappily-native-shell .go-grid-2,
  .goappily-settings-native-shell .go-grid-2,
  .goappily-booking-view-native-shell .go-grid-2,
  .goappily-dashboard-native-shell .go-grid-2 {
    grid-template-columns: 1fr;
  }
}
