/* ===========================
   1. ROOT / GLOBAL
   =========================== */
:root {
  --bg: #0f172a;
  --bg-alt: #020617;
  --card-bg: #0b1220;
  --accent: #ef4444;                  /* main red */
  --accent-soft: rgba(239, 68, 68, .12); /* soft red background */
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: #1f2937;
  --danger: #ef4444;
  --radius-lg: 18px;
  --radius-full: 999px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
  --shadow-light: 0 10px 30px rgba(15, 23, 42, 0.6);

  --text-dark: #111827;
  --text-medium: #374151;
  --text-light: #6b7280;
  --border-light: #d1d5db;
  --bg-soft: #f9fafb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: #ffffff;
  color: #000000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 16px 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page header {
  margin-bottom: 8px;
}

main {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 24px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  main {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ===========================
   2. BRAND / HEADER
   =========================== */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 170px;
  height: auto;
  border-radius: 0;
  background: none;
  padding: 0;
  box-shadow: none;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 0, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
}

.brand-icon span {
  font-weight: 800;
  color: #020617;
  font-size: 18px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: 0.03em;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===========================
   3. BUTTONS
   =========================== */
.btn {
  border: none;
  font: inherit;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background 0.12s ease, color 0.12s ease;
}
/* Small notification pill for nav links */
.nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  min-width: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(239, 68, 68, 0.35);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 18px 40px rgba(239, 68, 68, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 6px 12px;
  font-size: 13px;
  color: #374151;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.btn-ghost:hover {
  background: #fef2f2;
  border-color: rgba(248, 113, 113, 0.7);
  color: #b91c1c;
}

/* full-width button helper */
.btn-block {
  width: 100%;
  display: inline-flex;
  justify-content: center;
}

/* ===========================
   4. HOMEPAGE – HERO + SEARCH
   =========================== */
.hero {
  background: radial-gradient(circle at top left, #111827, #020617);
  border-radius: 32px;
  padding: 26px 22px;
  border: 1px solid rgba(55, 65, 81, 0.7);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: var(--muted);
  font-size: 12px;
  width: fit-content;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
}

h1 {
  font-size: clamp(26px, 4vw, 34px);
  margin: 0;
  letter-spacing: 0.02em;
  color: #ffffff;
}

h1 span.accent {
  background: linear-gradient(130deg, #fca5a5, #ef4444, #b91c1c);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

.hero-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 36rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.hero-badges span {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.8);
  color: var(--muted);
}

.hero-badges span strong {
  color: #e5e7eb;
}

.search-panel {
  margin-top: 10px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(55, 65, 81, 0.8);
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.field-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 10px;
}

@media (max-width: 640px) {
  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
  display: block;
}

.field {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 16px;
  padding: 8px 10px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

.field input,
.field select {
  background: transparent;
  border: none;
  color: var(--text);
  font: inherit;
  width: 100%;
  outline: none;
}

.field span.icon {
  font-size: 16px;
  opacity: 0.8;
}

.search-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}


.search-meta {
  font-size: 11px;
  color: var(--muted);
}

.search-meta span {
  color: var(--accent);
  font-weight: 500;
}
/* Homepage: secondary CTA under search */
.secondary-cta {
  margin-top: 6px;
}

.secondary-cta .btn-ghost {
  font-size: 11px;
  padding: 5px 12px;
}

/* ===========================
   5. HOMEPAGE – STATS & SHOPS
   =========================== */
.stats-card {
  background: radial-gradient(circle at top right, #111827, #020617);
  border-radius: 32px;
  padding: 22px 18px;
  border: 1px solid rgba(55, 65, 81, 0.7);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stats-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stats-title {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.2);
}

.stats-tag {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(55, 65, 81, 0.8);
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.stat {
  padding: 10px 10px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(55, 65, 81, 0.85);
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
}

.stat-value span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 3px;
}

.stat-chip {
  font-size: 11px;
  color: var(--accent);
  margin-top: 3px;
}

.shops-panel {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px dashed rgba(55, 65, 81, 0.7);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shops-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
}

.sort-select {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 999px;
  padding: 4px 9px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 11px;
  color: var(--muted);
}

.shop-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 4px;
}

/* --- Homepage shop card (light card) --- */
.shop-card {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.shop-card:hover {
  transform: translateY(-1px);
  border-color: var(--accent-soft);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
}

.shop-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.shop-name {
  font-weight: 600;
  font-size: 15px;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 12px;
  color: #b91c1c;
}

.rating-pill .star {
  font-size: 11px;
}

.shop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  font-size: 12px;
  color: #6b7280;
}

.dot-divider::before {
  content: "•";
  margin: 0 4px;
  color: #d1d5db;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.service-tag {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #374151;
}

.shop-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 190px;
}

.price-pill {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fef2f2;
  color: #7f1d1d;
  border: 1px solid rgba(248, 113, 113, 0.4);
}

.shop-cta-buttons {
  display: flex;
  gap: 6px;
}

.shop-cta .btn.btn-ghost {
  font-size: 11px;
  padding-inline: 10px;
}

.shop-cta button {
  font-size: 12px;
}
/* Homepage – compact "Your activity" line */
.home-activity-inline {
  margin-top: 10px;
  font-size: 12px;
  color: #9ca3af;
}

.home-activity-inline-label {
  font-weight: 400;
}

.home-activity-link {
  text-decoration: none;
  color: #e5e7eb;
  margin-left: 6px;
}

.home-activity-link:hover {
  text-decoration: underline;
}

.home-activity-count {
  margin-left: 2px;
  opacity: 0.9;
}

.home-activity-separator {
  margin: 0 6px;
  opacity: 0.6;
}

.home-activity-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f97316; /* orange */
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
  margin-left: 4px;
  vertical-align: middle;
}

/* ===========================
   6. FOOTER
   =========================== */
footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px 20px;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ===========================
   7. AUTH PAGES
   =========================== */
.auth-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

/* Shared card style (auth, dashboard, shop detail) */
.auth-card,
.dashboard-card,
.shop-detail-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* Specific paddings */
.auth-card {
  max-width: 420px;
  width: 100%;
  padding: 24px 20px;
}

.auth-title {
  margin: 0 0 6px;
  font-size: 24px;
}

.auth-subtitle {
  margin: 0 0 18px;
  font-size: 14px;
  color: #6b7280;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #374151;
}

/* Shared form controls – auth, dashboard, reservation */
.auth-form input,
.dashboard-form input,
.dashboard-form textarea,
.reservation-form input[type="datetime-local"],
.reservation-form select,
.reservation-form textarea {
  border-radius: 10px;
  border: 1px solid var(--border-light);
  padding: 8px 10px;
  font: inherit;
  background: #ffffff;
  color: var(--text-dark);
  font-size: 14px;
}

.auth-form input:focus,
.dashboard-form input:focus,
.dashboard-form textarea:focus,
.reservation-form input[type="datetime-local"]:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: 2px solid rgba(239, 68, 68, 0.35);
  border-color: #ef4444;
}

.auth-extra-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-top: 4px;
}

.auth-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.auth-link {
  color: #ef4444;
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.auth-footer-text {
  margin-top: 14px;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
}

/* ===========================
   8. SHOP DASHBOARD
   =========================== */
.dashboard-layout {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0 40px;
}

.dashboard-title {
  margin: 0;
  font-size: 22px;
}

.dashboard-subtitle {
  margin: 0 0 12px;
  font-size: 14px;
  color: #6b7280;
}

.dashboard-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .dashboard-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.dashboard-card {
  padding: 18px 16px;
}

.dashboard-section-title {
  margin: 0 0 8px;
  font-size: 16px;
}

.dashboard-subheading {
  margin: 12px 0 6px;
  font-size: 13px;
  color: #4b5563;
}

.dashboard-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-form label span {
  font-size: 12px;
  color: #4b5563;
}

.dashboard-message {
  font-size: 13px;
  color: #16a34a;
  margin: 0 0 8px;
}

.dashboard-submit {
  margin-top: 8px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1.5fr) minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
}

.service-row input[type="text"],
.service-row input[type="number"] {
  width: 100%;
}

.service-row .service-label {
  font-size: 13px;
}

.service-row .service-currency {
  font-size: 13px;
  color: #6b7280;
}

@media (max-width: 600px) {
  .service-row {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) auto;
  }

  .service-row input[type="checkbox"] {
    grid-column: 1 / -1;
    justify-self: flex-start;
  }
}

/* ===========================
   9. SHOP DETAIL PAGE
   =========================== */
.shop-detail-layout {
  padding: 24px 0 40px;
  background: radial-gradient(circle at top left, rgba(239, 68, 68, 0.12), transparent 55%),
              radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.12), transparent 55%);
}

.shop-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: -6px;
}

/* Hero card */
.shop-detail-hero {
  position: relative;
  border-radius: 16px;
  padding: 20px 24px 20px;
  background: linear-gradient(135deg, #1f2937, #b91c1c 65%);
  color: #f9fafb;
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  overflow: hidden;
}

.shop-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 55%),
              radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 50%);
  pointer-events: none;
}

.shop-detail-hero > * {
  position: relative;
  z-index: 1;
}

.shop-detail-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(248, 250, 252, 0.18);
  color: #e5e7eb;
}

.shop-detail-title {
  margin: 8px 0 4px;
  font-size: 22px;
}

.shop-detail-meta {
  margin: 8px 0 8px;
  font-size: 13px;
  color: #f9fafb;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.shop-detail-meta span {
  display: inline-flex;
  align-items: center;
}

.shop-detail-meta .dot-divider::before {
  content: "•";
  margin: 0 4px;
  color: rgba(249, 250, 251, 0.4);
}

.shop-detail-subtitle {
  margin: 0;
  font-size: 13px;
  color: #e5e7eb;
  max-width: 520px;
}

/* grid below hero */
.shop-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .shop-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* shop-detail-card padding already set via shared card */

.shop-detail-card h2 {
  margin: 0 0 8px;
  font-size: 16px;
}

/* left column (services) */
.shop-detail-empty {
  font-size: 13px;
  color: #6b7280;
}

.shop-detail-services {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.shop-detail-service-row {
  background: #fdfdfd;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-detail-service-row .service-name {
  font-weight: 500;
  color: #111827;
}

.shop-detail-service-row .service-price {
  color: #b91c1c;
  font-weight: 600;
}

.shop-detail-note {
  margin-top: 8px;
  font-size: 11px;
  color: #9ca3af;
}

/* right column (booking/login) */
.shop-detail-right-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.shop-detail-right-header h2 {
  font-weight: 600;
  font-size: 17px;
}

.shop-detail-pill {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(239,68,68,0.1);
  color: #991b1b;
  border: 1px solid rgba(248, 113, 113, 0.55);
  font-weight: 600;
}

.shop-detail-coming-soon {
  margin-top: 8px;
  font-size: 13px;
  color: #374151;
  background: #f9fafb;
  border-radius: 12px;
  padding: 10px 10px;
  border: 1px dashed rgba(156, 163, 175, 0.7);
}

.shop-detail-auth-cta {
  margin-top: 8px;
}

.shop-detail-auth-cta p {
  font-size: 12px;
  color: #6b7280;
}

/* Make subtitle in booking card readable on white */
.shop-detail-card .shop-detail-subtitle {
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* ===========================
   10. RESERVATION FORM
   =========================== */

/* Darker labels/spans inside the reservation form */
.reservation-form label,
.reservation-form span {
  color: #374151;
}

/* Placeholder tweaks */
.reservation-form textarea::placeholder,
.reservation-form input::placeholder {
  color: #6b7280;
}

/* You can wrap the whole form if you want a subtle card feel
.reservation-form {
  background: #fafafa;
  border: 1px solid #e5e7eb;
  padding: 16px;
  border-radius: 14px;
}
*/

/* ===========================
   11. MISC
   =========================== */
.error-message {
  font-size: 11px;
  color: var(--danger);
  padding-top: 4px;
}


/* Homepage – compact "Your activity" line */
.home-activity-inline {
  margin-top: 8px;
  font-size: 12px;
  color: #9ca3af;
}

.home-activity-inline-label {
  font-weight: 400;
}

.home-activity-link {
  text-decoration: none;
  color: #e5e7eb;            /* white-ish to match hero */
  margin-left: 8px;
  font-weight: 500;
}

.home-activity-link:hover {
  text-decoration: underline;
}

.home-activity-count {
  margin-left: 2px;
  padding: 1px 6px;
  border-radius: 999px;
  border: 1px solid #4b5563;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
}

.home-activity-separator {
  margin: 0 8px;
  opacity: 0.5;
  color: #6b7280;
}

.home-activity-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f97316; /* orange */
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
  margin-left: 4px;
  vertical-align: middle;
}

/* Unread chat indicator on My reservations cards */
.chat-unread-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f97316; /* orange */
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
  margin-left: 4px;
  vertical-align: middle;
}

