:root {
  --dash-bg: #f3f5fb;
  --dash-sidebar-bg: #ffffff;
  --dash-border: #edeef4;
  --dash-text: #2b2d3c;
  --dash-text-muted: #8b93a7;
  --dash-primary: #6c5ce7;
  --dash-primary-soft: #f1eeff;
  --dash-pink: #ff6b93;
  --dash-pink-soft: #ffe9ee;
  --dash-blue: #4fc3f7;
  --dash-blue-soft: #e7f7ff;
  --dash-green: #2ecc71;
  --dash-green-soft: #e8fbf0;
  --dash-amber: #f5a623;
  --dash-amber-soft: #fef3e0;
  --dash-input-border: #dee1ea;
  --dash-radius: 0;
  --dash-radius-sm: 0;
  --dash-shadow: 0 4px 24px rgba(43, 45, 60, 0.06);
}

body.dash-body {
  background: var(--dash-bg);
  color: var(--dash-text);
  min-height: 100vh;
}

.dash-shell {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.dash-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--dash-sidebar-bg);
  border-right: 1px solid var(--dash-border);
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  transition: width 0.2s ease, padding 0.2s ease;
}

@media (min-width: 992px) {
  .dash-shell.sidebar-collapsed .dash-sidebar {
    width: 84px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .dash-shell.sidebar-collapsed .dash-brand {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .dash-shell.sidebar-collapsed .dash-nav-item {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .dash-shell.sidebar-collapsed .dash-brand-name,
  .dash-shell.sidebar-collapsed .dash-nav-label,
  .dash-shell.sidebar-collapsed .dash-nav-item span {
    display: none;
  }
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 24px;
  text-decoration: none;
  color: var(--dash-text);
}

.dash-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--dash-primary), var(--dash-pink));
  flex-shrink: 0;
}

.dash-brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.dash-nav-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dash-text-muted);
  padding: 16px 12px 6px;
}

.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 0;
  color: var(--dash-text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}

.dash-nav-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.dash-nav-item:hover {
  background: var(--dash-bg);
  color: var(--dash-text);
}

.dash-nav-item.active {
  background: var(--dash-primary-soft);
  color: var(--dash-primary);
  font-weight: 600;
}

.dash-sidebar-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--dash-border);
}

/* Main */
.dash-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 32px;
  background: var(--dash-sidebar-bg);
  border-bottom: 1px solid var(--dash-border);
}

.dash-burger {
  border: none;
  background: var(--dash-bg);
  border-radius: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dash-text);
}

.dash-burger svg {
  width: 20px;
  height: 20px;
}

.dash-breadcrumb {
  flex: 1;
  min-width: 0;
}

.dash-breadcrumb-title {
  display: block;
  font-weight: 700;
  font-size: 1.15rem;
}

.dash-breadcrumb-path {
  display: block;
  font-size: 0.8rem;
  color: var(--dash-text-muted);
}

.dash-topbar-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-user-name {
  font-size: 0.88rem;
  font-weight: 600;
}

.dash-user-role {
  display: block;
  font-size: 0.75rem;
  color: var(--dash-text-muted);
  font-weight: 400;
}

.dash-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--dash-primary), var(--dash-blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.dash-logout-btn {
  border: none;
  background: var(--dash-bg);
  border-radius: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dash-text-muted);
}

.dash-logout-btn:hover {
  color: var(--dash-pink);
}

.dash-logout-btn svg {
  width: 18px;
  height: 18px;
}

.dash-content {
  padding: 28px 32px 48px;
}

/* Stat cards */
.dash-stat-card {
  background: var(--dash-sidebar-bg);
  border-radius: 0;
  box-shadow: var(--dash-shadow);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
}

.dash-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-stat-icon svg {
  width: 22px;
  height: 22px;
}

.dash-stat-icon.pink {
  background: var(--dash-pink-soft);
  color: var(--dash-pink);
}

.dash-stat-icon.blue {
  background: var(--dash-blue-soft);
  color: #1a9fd8;
}

.dash-stat-icon.green {
  background: var(--dash-green-soft);
  color: var(--dash-green);
}

.dash-stat-icon.purple {
  background: var(--dash-primary-soft);
  color: var(--dash-primary);
}

.dash-stat-label {
  font-size: 0.78rem;
  color: var(--dash-text-muted);
  margin-bottom: 2px;
}

.dash-stat-value {
  font-weight: 700;
  font-size: 0.98rem;
}

/* Panels */
.dash-panel {
  background: var(--dash-sidebar-bg);
  border-radius: 0;
  box-shadow: var(--dash-shadow);
  padding: 24px;
  height: 100%;
}

.dash-panel-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
}

.dash-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--dash-border);
}

.dash-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dash-info-icon {
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: var(--dash-primary-soft);
  color: var(--dash-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-info-icon svg {
  width: 16px;
  height: 16px;
}

.dash-info-icon.blue {
  background: var(--dash-blue-soft);
  color: #1a9fd8;
}

.dash-info-icon.green {
  background: var(--dash-green-soft);
  color: var(--dash-green);
}

.dash-info-icon.pink {
  background: var(--dash-pink-soft);
  color: var(--dash-pink);
}

.dash-info-icon.amber {
  background: var(--dash-amber-soft);
  color: #b9790a;
}

.dash-info-label {
  font-size: 0.78rem;
  color: var(--dash-text-muted);
}

.dash-info-value {
  font-size: 0.92rem;
  font-weight: 600;
}

/* Page header (title + primary action) */
.dash-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.dash-page-header h1 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.dash-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dash-primary);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}

.dash-btn-primary svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.dash-btn-primary:hover {
  background: #5b4bd6;
  color: #fff;
}

.dash-btn-primary:disabled,
.dash-btn-primary.disabled {
  background: var(--dash-border);
  color: var(--dash-text-muted);
  cursor: not-allowed;
  box-shadow: none;
}

/* Search toolbar */
.dash-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.dash-search {
  flex: 1;
  max-width: 360px;
  position: relative;
}

.dash-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--dash-text-muted);
}

.dash-search input {
  width: 100%;
  border: 1px solid var(--dash-input-border);
  background: var(--dash-sidebar-bg);
  border-radius: 0;
  padding: 10px 14px 10px 40px;
  font-size: 0.88rem;
}

.dash-search input:focus {
  outline: none;
  border-color: var(--dash-primary);
  box-shadow: none;
}

.dash-toolbar-btn {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--dash-border);
  background: var(--dash-sidebar-bg);
  border-radius: 0;
  padding: 6px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dash-text);
  text-decoration: none;
}

.dash-toolbar-btn:hover {
  background: var(--dash-bg);
}

/* User cards */
.dash-user-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 576px) {
  .dash-user-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .dash-user-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dash-user-card {
  background: var(--dash-sidebar-bg);
  border-radius: 0;
  box-shadow: var(--dash-shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.dash-user-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.dash-user-card-identity {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.dash-user-card-info {
  min-width: 0;
}

.dash-user-card-identity .dash-table-name,
.dash-user-card-identity .dash-table-email {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dash-user-card-head > .dash-badge {
  flex-shrink: 0;
}

.dash-user-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.dash-user-card-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--dash-text-muted);
}

.dash-user-card-date svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.dash-user-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--dash-border);
}

.dash-table-avatar {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--dash-primary), var(--dash-blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.dash-table-name {
  font-weight: 600;
}

.dash-table-email {
  font-size: 0.8rem;
  color: var(--dash-text-muted);
}

/* Badges / pills */
.dash-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 600;
}

.dash-badge.green {
  background: var(--dash-green-soft);
  color: #1e9e58;
}

.dash-badge.pink {
  background: var(--dash-pink-soft);
  color: #e0466f;
}

.dash-badge.amber {
  background: var(--dash-amber-soft);
  color: #b9790a;
}

.dash-badge.purple {
  background: var(--dash-primary-soft);
  color: var(--dash-primary);
}

.dash-badge.blue {
  background: var(--dash-blue-soft);
  color: #1a9fd8;
}

/* Row action buttons */
.dash-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--dash-border);
  background: var(--dash-sidebar-bg);
  border-radius: 0;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--dash-text);
  white-space: nowrap;
  text-decoration: none;
}

.dash-action-btn:hover {
  background: var(--dash-bg);
}

.dash-action-btn.danger {
  color: var(--dash-pink);
  border-color: var(--dash-pink-soft);
}

.dash-action-btn.danger:hover {
  background: var(--dash-pink-soft);
}

.dash-action-btn.success {
  color: #1e9e58;
  border-color: var(--dash-green-soft);
}

.dash-action-btn.success:hover {
  background: var(--dash-green-soft);
}

.dash-action-btn:disabled,
.dash-action-btn.danger:disabled,
.dash-action-btn.success:disabled {
  background: var(--dash-bg);
  color: var(--dash-text-muted);
  border-color: var(--dash-border);
  cursor: not-allowed;
  opacity: 0.6;
}

.dash-action-btn:disabled:hover,
.dash-action-btn.danger:disabled:hover,
.dash-action-btn.success:disabled:hover {
  background: var(--dash-bg);
}

.dash-role-menu {
  position: relative;
  display: inline-block;
}

.dash-role-menu > summary {
  list-style: none;
  cursor: pointer;
}

.dash-role-menu > summary::-webkit-details-marker {
  display: none;
}

.dash-role-menu-body {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--dash-sidebar-bg);
  border: 1px solid var(--dash-border);
  border-radius: 0;
  box-shadow: var(--dash-shadow);
  padding: 6px;
  z-index: 20;
  min-width: 160px;
}

.dash-role-menu-body button {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  padding: 8px 10px;
  border-radius: 0;
  font-size: 0.84rem;
}

.dash-role-menu-body button:hover:not(:disabled) {
  background: var(--dash-bg);
}

.dash-role-menu-body button:disabled {
  color: var(--dash-primary);
  font-weight: 600;
}

/* Pagination */
.dash-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.dash-pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 0;
  color: var(--dash-text);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  background: var(--dash-sidebar-bg);
  box-shadow: var(--dash-shadow);
}

.dash-pagination li.active a {
  background: var(--dash-primary);
  color: #fff;
}

.dash-pagination a:hover {
  background: var(--dash-primary-soft);
  color: var(--dash-primary);
}

.dash-pagination li.active a:hover {
  color: #fff;
}

.dash-pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  color: var(--dash-text-muted);
  font-size: 0.86rem;
}

/* Form panel (used for standalone forms like "new user") */
.dash-form-panel {
  background: var(--dash-sidebar-bg);
  border-radius: 0;
  box-shadow: var(--dash-shadow);
  padding: 28px;
  max-width: 520px;
}

@media (max-width: 991.98px) {
  .dash-content {
    padding: 20px 16px 40px;
  }

  .dash-topbar {
    padding: 14px 16px;
  }
}

/* Booking wizard (запис на шиномонтаж) */
.booking-stepper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.booking-stepper-item {
  padding: 6px 16px;
  border-radius: 0;
  background: var(--dash-bg);
  color: var(--dash-text-muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.booking-stepper-item.active {
  background: var(--dash-primary);
  color: #fff;
}

.booking-stepper-item.done {
  background: var(--dash-primary-soft);
  color: var(--dash-primary);
}

.booking-wizard-back {
  margin-bottom: 16px;
}

.booking-wizard-back a {
  color: var(--dash-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.booking-wizard-back a:hover {
  color: var(--dash-primary);
}

.booking-city-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-city-pill {
  padding: 8px 18px;
  border-radius: 0;
  background: var(--dash-sidebar-bg);
  color: var(--dash-text);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: var(--dash-shadow);
}

.booking-city-pill:hover {
  border-color: var(--dash-primary-soft);
}

.booking-city-pill.active {
  background: var(--dash-primary);
  color: #fff;
}

.booking-map {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 0;
  box-shadow: var(--dash-shadow);
}

.booking-map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dash-sidebar-bg);
  text-align: center;
  padding: 24px;
}

.booking-station-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 420px;
  overflow-y: auto;
}

.booking-station-card {
  display: block;
  padding: 16px;
  border-radius: 0;
  background: var(--dash-sidebar-bg);
  box-shadow: var(--dash-shadow);
  text-decoration: none;
  color: var(--dash-text);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.booking-station-card:hover {
  border-color: var(--dash-primary-soft);
}

.booking-station-card.is-active {
  border-color: var(--dash-primary);
  background: var(--dash-primary-soft);
}

.booking-station-card-title {
  font-weight: 600;
}

.booking-station-card-meta {
  font-size: 0.86rem;
  color: var(--dash-text-muted);
}

.booking-station-card-hours {
  margin-top: 6px;
  font-size: 0.86rem;
  color: var(--dash-text-muted);
}

.booking-calendar {
  max-width: 480px;
  background: var(--dash-sidebar-bg);
  border-radius: 0;
  box-shadow: var(--dash-shadow);
  padding: 20px;
}

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

.booking-calendar-title {
  font-weight: 600;
  text-transform: capitalize;
}

.booking-calendar-nav {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: var(--dash-bg);
  color: var(--dash-text);
  text-decoration: none;
  font-size: 1.1rem;
}

.booking-calendar-nav:hover {
  background: var(--dash-primary-soft);
  color: var(--dash-primary);
}

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

.booking-calendar-dow {
  text-align: center;
  font-size: 0.78rem;
  color: var(--dash-text-muted);
  padding-bottom: 4px;
}

.booking-day {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 0;
  font-size: 0.86rem;
  color: var(--dash-text-muted);
}

a.booking-day {
  background: var(--dash-primary-soft);
  color: var(--dash-primary);
  font-weight: 600;
  text-decoration: none;
}

a.booking-day:hover {
  background: var(--dash-primary);
  color: #fff;
}

.booking-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.booking-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 0;
  background: var(--dash-sidebar-bg);
  box-shadow: var(--dash-shadow);
  text-decoration: none;
  color: var(--dash-text);
  font-weight: 600;
  font-size: 0.9rem;
}

.booking-slot:hover {
  background: var(--dash-primary);
  color: #fff;
}

.booking-slot.disabled {
  background: var(--dash-bg);
  color: var(--dash-text-muted);
  box-shadow: none;
}

.booking-summary {
  padding: 16px;
  border-radius: 0;
  background: var(--dash-bg);
}

.booking-schedule-day {
  margin-bottom: 20px;
}

.booking-schedule-day:last-child {
  margin-bottom: 0;
}

.schedule-row-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: var(--dash-primary-soft);
  color: var(--dash-primary);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.schedule-row-btn svg {
  width: 18px;
  height: 18px;
}

.schedule-row-btn:hover {
  background: var(--dash-primary);
  color: #fff;
}

.schedule-row-btn-remove {
  background: var(--dash-pink-soft);
  color: var(--dash-pink);
}

.schedule-row-btn-remove:hover {
  background: var(--dash-pink);
  color: #fff;
}

/* Shared look for native inputs, textareas and Choices.js (replaces native
   <select> across client and admin forms) so every form control matches. */
.form-control,
.form-select {
  min-height: 38px;
  background: #fff;
  border: 1px solid var(--dash-input-border);
  border-radius: var(--dash-radius);
  padding: 6px 8px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dash-text);
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--dash-primary);
  box-shadow: none;
}

.choices {
  width: 100%;
  margin-bottom: 0;
}

.input-group .choices {
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.choices__inner {
  min-height: 38px;
  background: #fff;
  border: 1px solid var(--dash-input-border);
  border-radius: var(--dash-radius);
  padding: 6px 8px;
  font-size: 1rem;
}

.choices[data-type*="select-one"] .choices__inner {
  padding-bottom: 6px;
}

.choices__list--single {
  padding: 0 16px 0 0;
}

.choices.is-focused .choices__inner,
.choices.is-open .choices__inner {
  border-color: var(--dash-primary);
}

.choices__list--multiple .choices__item {
  background: var(--dash-primary);
  border-color: var(--dash-primary);
  border-radius: 0;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
  border-radius: 0;
  border-color: var(--dash-input-border);
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background: var(--dash-primary-soft);
}

.btn-reset-filters {
  border-radius: 0;
}

/* Ціна з націнкою: попап з ціною "до націнки" (manager/admin only, see
   src/views/mixins/markup.pug). Пунктирне підкреслення — візуальна підказка,
   що елемент інтерактивний, і на мобільних (тап = focus, див. public/js/site.js). */
.price-markup-tip {
  cursor: help;
  border-bottom: 1px dashed currentColor;
  text-decoration: none;
}

.price-markup-tip:focus-visible {
  outline: 2px solid var(--dash-primary);
  outline-offset: 2px;
}
