/**
 * WeCare CRS — native mobile shell (Capacitor Android)
 * Brand: magenta #9e156f · navy #2f2f91 · accent #1f8ec8
 */

.crs-native {
  --mobile-tab-h: 58px;
  --mobile-safe-top: env(safe-area-inset-top, 0px);
  --mobile-safe-bottom: env(safe-area-inset-bottom, 0px);
  --mobile-content-pad: calc(var(--mobile-tab-h) + var(--mobile-safe-bottom) + 12px);
}

/* ── App frame: fixed viewport, scroll only in .main ── */
.crs-native {
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
}

.crs-native body {
  margin: 0;
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
  background: #f0f2fa;
  width: 100%;
  max-width: 100vw;
  -webkit-text-size-adjust: 100%;
}

.crs-native #app {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
}

.crs-native #login-view:not(.hidden) {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  touch-action: pan-y;
  background: #f0f2fa;
}

.crs-native .login-wrap {
  min-height: 100%;
  padding: 0;
}

/* ── Login ── */
.crs-native .auth-page {
  display: flex;
  flex-direction: column;
  min-height: min(100dvh, 100%);
  grid-template-columns: 1fr;
}

.crs-native .auth-brand-panel {
  flex-shrink: 0;
  padding: calc(var(--mobile-safe-top) + 1rem) 1rem 0.9rem;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 42%, var(--magenta) 100%);
  text-align: center;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 6px 20px rgba(47, 47, 145, 0.2);
}

.crs-native .auth-logo {
  max-width: 112px;
  max-height: 96px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.crs-native .auth-title {
  font-size: 1rem;
  margin-top: 0.6rem;
  line-height: 1.3;
}

.crs-native .auth-lead {
  font-size: 0.8rem;
  max-width: 20rem;
  margin: 0.35rem auto 0;
  opacity: 0.92;
}

.crs-native .auth-parent-link {
  display: none;
}

.crs-native .auth-form-panel {
  flex: 1 0 auto;
  padding: 1rem 0.85rem calc(1.25rem + var(--mobile-safe-bottom));
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.crs-native .login-panel {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(31, 31, 107, 0.08);
  border: 1px solid var(--border-soft);
  background: #fff;
}

/* ── Shell ── */
.crs-native .erp-shell,
.crs-native .erp-shell--mobile {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: 1fr !important;
  flex: 1 1 0 !important;
  min-height: 0 !important;
  height: 100% !important;
  max-height: 100dvh !important;
  width: 100% !important;
  max-width: 100vw !important;
  overflow: hidden !important;
}

.crs-native .erp-sidebar {
  display: none !important;
}

.crs-native .erp-main-wrap {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 0 !important;
  min-height: 0 !important;
  height: 0 !important;
  width: 100% !important;
  max-width: 100vw !important;
  overflow: hidden !important;
  padding-bottom: 0 !important;
  position: relative;
}

.crs-native .app-topbar {
  flex: 0 0 auto;
  flex-shrink: 0;
  margin: 0;
  padding: calc(var(--mobile-safe-top) + 0.55rem) 0.85rem 0.7rem;
  background: linear-gradient(135deg, var(--navy) 0%, #3a3aa5 50%, var(--magenta) 100%);
  border: none;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 14px rgba(47, 47, 145, 0.16);
  color: #fff;
  gap: 0.45rem;
  z-index: 10;
}

.crs-native .topbar-leading {
  width: 100%;
  min-width: 0;
}

.crs-native .app-topbar .page-title {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0;
  word-break: break-word;
}

.crs-native .app-topbar .page-subtitle {
  display: none;
}

.crs-native .topbar-school-filter {
  width: 100%;
}

.crs-native .topbar-school-filter .school-filter-select {
  width: 100%;
  margin: 0;
}

.crs-native .topbar-school-filter label,
.crs-native .topbar-school-filter select {
  color: var(--text);
  width: 100%;
  font-size: 0.85rem;
}

/* Primary scroll region */
.crs-native .main {
  flex: 1 1 0 !important;
  min-height: 0 !important;
  height: 0 !important;
  width: 100% !important;
  max-width: 100vw !important;
  padding: 0.7rem 0.75rem var(--mobile-content-pad) !important;
  overflow-x: hidden !important;
  overflow-y: scroll !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  touch-action: pan-y;
  scroll-behavior: auto;
  will-change: transform;
}

.crs-native .main.ptr-pulling {
  transition: none;
}

.crs-native .ptr-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: 12;
  pointer-events: none;
  --ptr-pull: 0px;
}

.crs-native .ptr-indicator-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 72px;
  margin-top: -72px;
  padding: 0.35rem 0.75rem 0.25rem;
  transform: translateY(var(--ptr-pull));
  opacity: 0;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  transition: opacity 0.15s ease;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 100%);
  border-bottom: 1px solid rgba(47, 47, 145, 0.08);
  box-shadow: 0 4px 16px rgba(47, 47, 145, 0.08);
  border-radius: 0 0 12px 12px;
}

.crs-native .ptr-indicator--visible .ptr-indicator-inner,
.crs-native .ptr-indicator--refreshing .ptr-indicator-inner {
  opacity: 1;
}

.crs-native .ptr-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  background: #fff;
  padding: 0.2rem 0.3rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(47, 47, 145, 0.12);
  transition: transform 0.12s ease;
}

.crs-native .ptr-spinner {
  display: none;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(47, 47, 145, 0.15);
  border-top-color: var(--magenta);
  border-radius: 50%;
  flex-shrink: 0;
}

.crs-native .ptr-indicator--ready .ptr-spinner {
  display: block;
  animation: ptr-spin 0.75s linear infinite;
}

.crs-native .ptr-indicator--ready .ptr-logo {
  display: none;
}

.crs-native .ptr-icon {
  display: none;
}

.crs-native .ptr-indicator--ready .ptr-icon,
.crs-native .ptr-indicator--refreshing .ptr-icon {
  animation: ptr-spin 0.75s linear infinite;
}

@keyframes ptr-spin {
  to {
    transform: rotate(360deg);
  }
}

.crs-native .page-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 100%;
  min-width: 0;
  width: 100%;
}

.crs-native .page-head {
  flex-wrap: wrap;
  gap: 0.45rem;
}

.crs-native .page-head h2 {
  font-size: 1rem;
  margin: 0;
}

/* ── Bottom tabs (sibling of .erp-shell, not inside flex chain) ── */
.crs-native .mobile-tab-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 6px 4px calc(6px + var(--mobile-safe-bottom));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 18px rgba(31, 31, 107, 0.08);
}

.crs-native .mobile-tab {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px 2px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-soft);
  font: 600 0.6rem/1.1 "Plus Jakarta Sans", system-ui, sans-serif;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.crs-native .mobile-tab-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
}

.crs-native .mobile-tab-icon .nav-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  margin-left: 0;
  min-width: 1rem;
  height: 1rem;
  font-size: 0.62rem;
  background: var(--magenta);
  color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.crs-native .mobile-tab-icon svg {
  width: 21px;
  height: 21px;
}

.crs-native .mobile-tab-label {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 1px;
}

.crs-native .mobile-tab.active,
.crs-native .mobile-tab.mobile-tab--more-open {
  color: var(--magenta);
  background: var(--magenta-light);
}

.crs-native .mobile-tab.active .mobile-tab-icon svg,
.crs-native .mobile-tab.mobile-tab--more-open .mobile-tab-icon svg {
  stroke: var(--magenta);
}

.crs-native .mobile-header-user {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.3rem;
  font-size: 0.68rem;
  opacity: 0.95;
  flex-wrap: wrap;
  min-width: 0;
}

.crs-native .mobile-header-user > span:nth-child(2) {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crs-native .mobile-header-avatar {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.crs-native .mobile-header-user--minimal {
  justify-content: flex-end;
  margin-top: 0.15rem;
}

.crs-native .mobile-signout {
  margin-left: auto;
  padding: 0.28rem 0.5rem;
  font-size: 0.62rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  min-height: 30px;
  flex-shrink: 0;
}

/* ── More menu sheet ── */
.crs-native .mobile-nav-sheet {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  visibility: hidden;
}

.crs-native .mobile-nav-sheet.is-open {
  pointer-events: auto;
  visibility: visible;
}

.crs-native .mobile-nav-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 50, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.crs-native .mobile-nav-sheet.is-open .mobile-nav-sheet-backdrop {
  opacity: 1;
}

.crs-native .mobile-nav-sheet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: min(72dvh, 440px);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  background: #fff;
  border-radius: 18px 18px 0 0;
  padding: 0.5rem 0.75rem calc(0.85rem + var(--mobile-safe-bottom));
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.14);
  transform: translateY(100%);
  transition: transform 0.22s ease;
}

.crs-native .mobile-nav-sheet.is-open .mobile-nav-sheet-panel {
  transform: translateY(0);
}

.crs-native .mobile-nav-sheet-title {
  margin: 0.3rem 0 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.crs-native .mobile-nav-sheet-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.7rem 0.6rem;
  margin-bottom: 0.2rem;
  border: none;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--navy-dark);
  font: 600 0.88rem/1.2 "Plus Jakarta Sans", system-ui, sans-serif;
  text-align: left;
  cursor: pointer;
  min-height: 48px;
}

.crs-native .mobile-nav-sheet-item.active {
  background: var(--magenta-light);
  color: var(--magenta);
}

/* ── Content cards & lists ── */
.crs-native .card {
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(31, 31, 107, 0.06);
  border: 1px solid var(--border-soft);
  max-width: 100%;
  background: #fff;
}

.crs-native .stack,
.crs-native .stack-tight {
  max-width: 100%;
  min-width: 0;
}

.crs-native .ticket-row {
  border-radius: 12px;
  padding: 0.75rem;
  margin-bottom: 0.4rem;
  width: 100%;
  box-sizing: border-box;
}

.crs-native .ticket-sla-timer {
  font-size: 0.68rem;
  min-width: 4.25rem;
  padding: 0.22rem 0.4rem;
}

.crs-native .ticket-cal-modal-panel,
.crs-native .ticket-calendar-modal-panel {
  max-height: 85vh;
}

.crs-native .ticket-cal-week {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.crs-native .dashboard-page {
  gap: 0.65rem;
}

.crs-native .dashboard-page--mobile {
  gap: 0.55rem;
}

.crs-native .dashboard-page--mobile .dashboard-actions-label {
  font-size: 0.72rem;
  margin-bottom: 0.25rem;
}

.crs-native .dashboard-hero--compact {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  box-shadow: none;
  color: var(--text);
}

.crs-native .dashboard-hero--compact .dashboard-hero-title {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0;
}

.crs-native .dashboard-hero--compact .dashboard-hero-date {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: var(--text-soft);
}

.crs-native .dashboard-page--mobile .kpi-card {
  text-align: center;
  padding: 0.65rem 0.35rem;
}

.crs-native .dashboard-page--mobile .kpi-icon,
.crs-native .dashboard-page--mobile .kpi-hint {
  display: none;
}

.crs-native .dashboard-page--mobile .kpi-label {
  font-size: 0.68rem;
}

.crs-native .dashboard-page--mobile .kpi-value {
  font-size: 1.45rem;
  margin-top: 0.1rem;
}

.crs-native .school-snapshot-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.crs-native .school-snapshot-card {
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  background: #fafbff;
}

.crs-native .school-snapshot-name {
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  color: var(--navy);
}

.crs-native .school-snapshot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.crs-native .school-snapshot-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
}

.crs-native .school-snapshot-stat-label {
  color: var(--text-soft);
  font-size: 0.72rem;
}

.crs-native .dashboard-page--mobile .no-concerns-card .card-head h3 {
  font-size: 0.95rem;
}

.crs-native .dashboard-page--mobile .no-concerns-card .muted.small {
  font-size: 0.78rem;
  line-height: 1.4;
}

.crs-native .dashboard-page--mobile .timing-value {
  font-size: 1.35rem;
}

.crs-native .dashboard-page--mobile .kpi-card--timing-res .kpi-label,
.crs-native .dashboard-page--mobile .kpi-card--timing-close .kpi-label {
  font-size: 0.62rem;
  line-height: 1.25;
}

.crs-native .dashboard-page--mobile .kpi-card--timing-res .kpi-value,
.crs-native .dashboard-page--mobile .kpi-card--timing-close .kpi-value {
  font-size: 1.2rem;
}

.crs-native .dashboard-turnaround {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
}

.crs-native .dashboard-turnaround-value {
  font-size: 1.45rem;
}

.crs-native .dashboard-turnaround-grid {
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.crs-native .dashboard-turnaround-stat {
  padding: 0.65rem 0.55rem;
  border-radius: 10px;
}

.crs-native .dashboard-turnaround-label {
  font-size: 0.62rem;
  line-height: 1.25;
}

.crs-native .dashboard-turnaround-meta {
  font-size: 0.68rem;
}

.crs-native .dashboard-timing-grid {
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.crs-native .timing-card {
  padding: 0.65rem 0.55rem;
  border-radius: 10px;
}

.crs-native .timing-label {
  font-size: 0.62rem;
}

.crs-native .timing-hint,
.crs-native .timing-meta {
  font-size: 0.68rem;
}

.crs-native .dashboard-hero {
  border-radius: 14px;
  padding: 0.9rem;
}

.crs-native .dashboard-hero-title {
  font-size: 1.15rem;
  line-height: 1.25;
}

.crs-native .dashboard-hero-banner {
  border-radius: 10px;
  padding: 0.75rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

.crs-native .dashboard-actions-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

.crs-native .dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.crs-native .dashboard-page--mobile .dashboard-kpis:not(.dashboard-kpis--single) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.crs-native .dashboard-page--mobile .dashboard-kpis--single {
  grid-template-columns: 1fr;
}

.crs-native .dashboard-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.crs-native .dashboard-card--wide {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.crs-native .kpi-card {
  border-radius: 12px;
  padding: 0.65rem 0.5rem;
}

.crs-native .kpi-value {
  font-size: 1.35rem;
}

.crs-native .kpi-label,
.crs-native .kpi-hint {
  font-size: 0.68rem;
}

.crs-native .action-chip {
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  font-size: 0.76rem;
  justify-content: center;
  min-height: 44px;
  width: 100%;
}

.crs-native .compare-kpis {
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.crs-native .table-wrap,
.crs-native .dashboard-card--wide {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.crs-native .table,
.crs-native .dashboard-table {
  width: 100%;
  min-width: 480px;
}

.crs-native .chart-wrap {
  height: 200px;
  max-width: 100%;
  position: relative;
}

.crs-native .kv {
  display: grid;
  grid-template-columns: minmax(80px, 32%) 1fr;
  gap: 0.3rem 0.55rem;
  font-size: 0.86rem;
}

.crs-native .kv dt {
  margin: 0;
  color: var(--text-soft);
}

.crs-native .kv dd {
  margin: 0;
  word-break: break-word;
}

.crs-native .row-head {
  flex-wrap: wrap;
  gap: 0.45rem;
}

.crs-native .row-head h2 {
  font-size: 1rem;
  line-height: 1.3;
}

.crs-native .ticket-list-filters-grid {
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.crs-native .ticket-list-filters {
  padding: 0.75rem;
}

.crs-native .toast {
  bottom: var(--mobile-content-pad);
  left: 0.65rem;
  right: 0.65rem;
  max-width: none;
  border-radius: 12px;
  z-index: 90;
}

.crs-native button[type="submit"],
.crs-native .action-chip--primary,
.crs-native #btn-assign,
.crs-native #btn-enable-notifications,
.crs-native .btn-otp {
  background: linear-gradient(135deg, var(--magenta), var(--magenta-dark));
  border: none;
  color: #fff;
  font-weight: 700;
  min-height: 46px;
}

.crs-native button,
.crs-native .ghost,
.crs-native .nav-btn {
  min-height: 44px;
}

.crs-native input,
.crs-native select,
.crs-native textarea {
  font-size: 16px;
  min-height: 44px;
  max-width: 100%;
  box-sizing: border-box;
}

.crs-native textarea {
  min-height: 96px;
}

.crs-native .row-2 {
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.crs-native .phone-field {
  max-width: 100%;
}

.crs-native .ticket-log-entry {
  border-radius: 10px;
  font-size: 0.84rem;
}

.crs-native .notification-prompt {
  border-radius: 14px;
  border-left: 4px solid var(--magenta);
  padding: 0.85rem;
}

.crs-native .notification-prompt-actions {
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
}

.crs-native .notification-prompt-actions button {
  width: 100%;
}

.crs-native .mono {
  word-break: break-all;
  font-size: 0.78rem;
}

.crs-native .dashboard-link-row {
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
}

.crs-native .dashboard-link {
  font-size: 0.78rem;
  word-break: break-all;
}

.crs-native .users-page .page-head h2 {
  font-size: 1.15rem;
}

.crs-native .users-filter,
.crs-native .user-card,
.crs-native #user-form-card {
  border-radius: 14px;
}

.crs-native .users-list-title {
  font-size: 0.82rem;
}

.crs-native .user-card-head {
  flex-direction: column;
  align-items: stretch;
}

.crs-native .user-row-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.crs-native .user-edit-btn,
.crs-native .user-del-btn {
  width: 100%;
  min-height: 44px;
  font-weight: 600;
}

.crs-native .user-del-btn {
  background: #fff5f7;
}

.crs-native .users-table-wrap {
  display: none;
}

.crs-native .users-card-list {
  gap: 0.65rem;
}

.crs-native #user-form-card {
  margin-top: 0.25rem;
}

/* Small phones */
@media (max-width: 359px) {
  .crs-native .dashboard-kpis {
    grid-template-columns: 1fr;
  }

  .crs-native .dashboard-actions-row {
    grid-template-columns: 1fr;
  }

  .crs-native .mobile-tab-label {
    font-size: 0.55rem;
  }
}

/* Larger phones */
@media (min-width: 400px) {
  .crs-native .main {
    padding-left: 0.9rem !important;
    padding-right: 0.9rem !important;
  }

  .crs-native .dashboard-hero-title {
    font-size: 1.25rem;
  }
}
