/* SB Burger Week 2026 — Embed Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #e63946;
  --orange: #e76f51;
  --cream: #fdf0d5;
  --dark: #2b2b2b;
}

html,
body {
  height: 100%;
  overflow: hidden;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
}

/* ── Top bar ───────────────────────────────── */

.embed-bar {
  background: linear-gradient(135deg, var(--dark) 0%, #3a2a1e 100%);
  color: var(--cream);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--red);
  height: 36px;
  flex-shrink: 0;
}

.embed-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.embed-dates {
  color: var(--orange);
  font-weight: 400;
}

.embed-bar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bar-sep {
  color: #666;
  font-size: 0.72rem;
}

.embed-bar a {
  color: var(--orange);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}

.embed-bar a:hover {
  text-decoration: underline;
}

/* ── About modal ──────────────────────────────── */

.about-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background 0.25s ease;
}

.about-overlay.open {
  background: rgba(0, 0, 0, 0.5);
  pointer-events: auto;
}

.about-modal {
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  max-width: 340px;
  width: 90%;
  position: relative;
  text-align: center;
  opacity: 0;
  transform: scale(0.92) translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.about-overlay.open .about-modal {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.about-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

.about-close:hover {
  color: var(--dark);
}

.about-modal h2 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--dark);
}

.about-dates {
  color: var(--orange);
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.about-body {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 14px;
  text-align: center;
}

.about-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}

.about-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 4px;
  border-radius: 8px;
  background: #f8f8f8;
  border: 1px solid #eee;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}

.about-link-card:hover {
  background: var(--cream);
  border-color: var(--orange);
  transform: translateY(-1px);
}

.about-link-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.about-link-icon .github-icon {
  width: 1.1em;
  height: 1.1em;
  vertical-align: middle;
}

.about-link-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
}
.about-link-desc {
  font-size: 0.55rem;
  color: #888;
  text-align: center;
  line-height: 1.2;
}

.about-footer {
  font-size: 0.75rem;
  color: #999;
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: 4px;
}

.about-footer a {
  color: var(--orange);
  text-decoration: none;
}

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

.github-icon {
  width: 0.9em;
  height: 0.9em;
  vertical-align: -0.1em;
}

/* ── Concluded banner ──────────────────────── */

.concluded-banner {
  display: none;
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8cc 100%);
  color: var(--dark);
  text-align: center;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  border-bottom: 1px solid #f0d9b5;
  transition: background 0.15s;
}

.concluded-banner:hover {
  background: linear-gradient(135deg, #ffe8cc 0%, #ffd9a8 100%);
}

/* ── Concluded modal ──────────────────────── */

.concluded-modal {
  max-width: 340px;
}

.concluded-ctas {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}

.concluded-ctas .tip-amount-btn {
  flex: 1 1 0;
  max-width: 50%;
}

.concluded-note {
  font-size: 0.72rem;
  color: #999;
  font-style: italic;
  margin-bottom: 0;
}

/* ── Layout ─────────────────────────────────── */

.app {
  display: flex;
  height: calc(100% - 36px);
  overflow: hidden;
}

/* ── Sidebar ───────────────────────────────── */

.sidebar {
  width: 280px;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-shrink: 0;
}

.sidebar-controls {
  padding: 8px 10px;
  border-bottom: 1px solid #e0e0e0;
  background: #fafafa;
}

.search-wrapper {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  color: #999;
  pointer-events: none;
  transition: color 0.15s;
}

.search-wrapper:focus-within .search-icon {
  color: var(--red);
}

.search-box {
  width: 100%;
  padding: 6px 10px 6px 26px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.search-box:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.15);
}

.area-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.area-btn {
  padding: 3px 8px;
  border: 1px solid #ccc;
  border-radius: 14px;
  background: #fff;
  font-size: 0.68rem;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.area-btn:hover {
  background: #f0f0f0;
}

.area-btn.active {
  color: #fff;
  border-color: transparent;
}

.area-btn[data-area="All"].active {
  background: var(--dark);
}
.area-btn[data-area="Downtown SB"].active {
  background: #e63946;
}
.area-btn[data-area="Goleta"].active {
  background: #2d6a4f;
}
.area-btn[data-area="Carpinteria"].active {
  background: #1d3557;
}
.area-btn[data-area="Isla Vista"].active {
  background: #7b2cbf;
}
.area-btn[data-area="Santa Ynez"].active {
  background: #e76f51;
}
.area-btn[data-area="Other SB"].active {
  background: #e07a5f;
}

/* ── Tip Jar button ──────────────────────── */

.tip-jar-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #fff8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  border: 2px solid var(--orange);
}

@keyframes tip-ripple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

.tip-jar-btn {
  position: relative;
}

.tip-jar-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--orange);
  animation: tip-ripple 2.5s ease-out 5;
  pointer-events: none;
  z-index: -1;
}

.tip-jar-btn:hover::after {
  animation: none;
  opacity: 0;
}

.tip-jar-btn:hover {
  animation: none;
  background: #ffe8cc;
  transform: scale(1.05);
}

/* ── Tip Jar modal ──────────────────────── */

.tip-jar-modal {
  max-width: 340px;
}

.tip-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.tip-amount-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 12px 12px;
  border-radius: 10px;
  background: #f8f8f8;
  border: 2px solid #eee;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  flex: 1 1 0;
  min-width: 0;
  max-width: calc(33.33% - 6px);
}

.tip-amount-btn:hover {
  background: var(--cream);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.tip-amount-featured {
  border-color: var(--orange);
  background: #fff8f0;
}

.tip-emoji {
  font-size: 1.2rem;
  line-height: 1;
}

.tip-emoji-half {
  display: inline-block;
  width: 0.7em;
  overflow: hidden;
}

.tip-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  line-height: 1.2;
}

.tip-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
}

.tip-amount-btn.tip-amount-share {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 6px 12px;
  flex-direction: row;
  gap: 6px;
  justify-content: center;
}

.tip-amount-btn.tip-amount-share .tip-emoji {
  font-size: 1rem;
}

.tip-amount-btn.tip-amount-share .tip-price {
  font-size: 0.78rem;
}

.tip-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}

.tip-qr img {
  border-radius: 8px;
  border: 1px solid #eee;
}

.tip-qr-label {
  font-size: 0.65rem;
  color: #999;
}

/* ── FAB: Select & Print ─────────────────── */

.fab-wrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 6px;
}

.fab-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.fab-btn:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

.fab-wrapper.active .fab-btn {
  background: var(--red);
  color: #fff;
}

.fab-toolbar {
  display: none;
  align-items: center;
  gap: 4px;
  background: #fff;
  padding: 4px 10px;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.fab-wrapper.active .fab-toolbar {
  display: flex;
}

.fab-count {
  font-size: 0.68rem;
  color: #666;
  font-weight: 500;
  margin-right: 2px;
}

.fab-action-btn {
  padding: 3px 8px;
  border: 1px solid #ccc;
  border-radius: 14px;
  background: #fff;
  font-size: 0.68rem;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.fab-action-btn:hover {
  background: #f0f0f0;
}

.fab-print-btn {
  border-color: var(--red);
  color: var(--red);
}

.fab-print-btn:hover {
  background: var(--red);
  color: #fff;
}

.fab-hint {
  font-size: 0.62rem;
  color: #999;
  font-style: italic;
}

.checklist-checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
  margin-right: 6px;
}

.restaurant-item.unchecked {
  opacity: 0.4;
}

.restaurant-item.unchecked:hover {
  opacity: 0.65;
}

.checklist-summary {
  color: var(--red);
  font-weight: 600;
}

.restaurant-list {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.restaurant-list::-webkit-scrollbar {
  width: 5px;
}

.restaurant-list::-webkit-scrollbar-track {
  background: transparent;
}

.restaurant-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.restaurant-list::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

.restaurant-item {
  padding: 7px 10px;
  border-bottom: 1px solid #eee;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.restaurant-item:hover {
  background: #fdf0d5;
  border-left-color: var(--orange);
}

.restaurant-item .name-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.restaurant-item .name {
  font-size: 0.82rem;
  font-weight: 500;
}

.restaurant-item .menu-item-subtitle {
  font-size: 0.72rem;
  font-style: italic;
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  margin-left: 6px;
  gap: 3px;
}

.restaurant-item .area-badge {
  font-size: 0.62rem;
  padding: 2px 6px;
  border-radius: 10px;
  color: #fff;
  flex-shrink: 0;
  white-space: nowrap;
}

.sidebar-upvote {
  background: #fff3e0;
  border: 1px solid #f9a825;
  border-radius: 12px;
  padding: 1px 6px;
  font-size: 0.65rem;
  cursor: pointer;
  color: #e65100;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, opacity 0.15s;
}

.sidebar-upvote:hover {
  background: #ffe0b2;
  border-color: #f57f17;
}

.sidebar-upvote.upvoted {
  background: #fff3e0;
  border-color: #f9a825;
  color: #e65100;
}

.sidebar-upvote.zero {
  background: none;
  border: 1px dashed #ccc;
  color: #aaa;
}

.sidebar-upvote.zero:hover {
  background: #fafafa;
  border: 1px solid #bbb;
  color: #888;
}

.sidebar-upvote .upvote-heart {
  font-size: 0.7rem;
}

.sidebar-upvote.zero .upvote-heart {
  opacity: 0.4;
}

.sidebar-upvote.zero:hover .upvote-heart {
  opacity: 1;
}

.sidebar-upvote .upvote-count {
  font-size: 0.65rem;
}

.restaurant-count {
  padding: 4px 10px;
  font-size: 0.72rem;
  color: #888;
  border-bottom: 1px solid #eee;
  background: #fafafa;
}

.no-results {
  padding: 20px 10px;
  text-align: center;
  color: #999;
  font-size: 0.82rem;
}

/* ── Map ───────────────────────────────────── */

#map {
  flex: 1;
  z-index: 1;
}

/* ── Popup styling ─────────────────────────── */

.leaflet-popup-content-wrapper {
  border-radius: 8px;
  overflow: hidden;
}

.leaflet-popup-content {
  margin: 13px 16px;
}

.popup-accent {
  height: 3px;
  margin: -15px -20px 10px;
  border-radius: 0;
}

.popup-content {
  position: relative;
}

.popup-content h3 {
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--dark);
  padding-right: 50px;
}

.popup-content p {
  font-size: 0.78rem;
  color: #555;
  margin-top: 0;
  margin-bottom: 2px;
}

.popup-content .popup-burger {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.popup-content .popup-description {
  margin-top: 0;
}

.popup-coming-soon {
  color: #999;
  font-style: italic;
}

.coming-soon {
  color: #bbb;
}

/* ── Hours filters ──────────────────────── */

.hours-filters {
  display: flex;
  gap: 4px;
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid #eee;
}

.hours-filters .area-btn {
  flex: 1;
}

.hours-filters .area-btn.active {
  background: var(--dark);
  color: #fff;
  border-color: transparent;
}

/* ── Hours in popup ──────────────────────── */

.popup-hours {
  font-size: 0.78rem;
  color: #555;
  margin-top: 4px;
  min-height: 0;
}

.popup-hours:empty {
  display: none;
}

.popup-hours-dot {
  font-size: 0.65rem;
}

/* ── Hours badge in sidebar ──────────────── */

.hours-dot {
  display: inline-block;
  font-size: 0.62rem;
  padding: 1px 6px;
  border-radius: 8px;
  margin-top: 2px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
}

.hours-dot.closing-soon {
  color: #e65100;
  background: #fff3e0;
  border: 1px solid #ffcc80;
}

.hours-dot.closed {
  color: #c62828;
  background: #fce4ec;
  border: 1px solid #ef9a9a;
}


.popup-section {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 5px 7px;
  margin-top: 5px;
}

.popup-section-name {
  background: none;
  border: none;
  padding: 0;
  margin-top: 0;
}

.popup-section-name + .popup-section {
  margin-top: 2px;
}

.popup-section-heading {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.popup-address-row {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 0.78rem;
  color: #555;
  margin-bottom: 5px;
  line-height: 1.3;
}

.popup-pin {
  flex-shrink: 0;
  color: var(--red);
  margin-top: 1px;
}

.popup-directions-btns {
  display: flex;
  gap: 4px;
}

.popup-dir-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 1 1 0;
  justify-content: center;
  padding: 4px 7px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: var(--dark);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
  line-height: 1;
}

.popup-dir-btn:hover {
  background: #fdf0d5;
  border-color: var(--orange);
}

.popup-dir-btn svg {
  flex-shrink: 0;
  color: var(--red);
}

.popup-section-info {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

/* ── Popup upvote button (inline with address) ──────── */

.popup-upvote {
  margin-left: auto;
  flex-shrink: 0;
}

.upvote-btn {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px 7px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 14px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  line-height: 1;
  flex-shrink: 0;
}

.upvote-btn:hover {
  background: #e8e8e8;
  border-color: #bbb;
}

.upvote-btn:active {
  transform: scale(0.95);
}

.upvote-btn.upvoted {
  background: #fff3e0;
  border-color: #f9a825;
  color: #e65100;
}

.upvote-btn.zero {
  background: none;
  border: 1px dashed #ccc;
  color: #aaa;
}

.upvote-btn.zero:hover {
  background: #fafafa;
  border: 1px solid #bbb;
  color: #888;
}

.upvote-btn.zero .upvote-heart {
  opacity: 0.4;
}

.popup-upvote.zero .upvote-heart {
  opacity: 0.6;
}

.upvote-btn.zero:hover .upvote-heart {
  opacity: 1;
}

.upvote-btn.frozen {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.upvote-heart {
  font-size: 0.78rem;
  line-height: 1;
}

.upvote-count {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--dark);
  min-width: 0;
}

.popup-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 6px;
  padding: 6px 10px;
  background: #f9f9f9;
  color: var(--dark);
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  line-height: 1;
}

.popup-share-btn:hover {
  background: #fdf0d5;
  border-color: var(--orange);
}

.popup-share-btn svg {
  flex-shrink: 0;
}

.popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 3px;
}

.popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1 1 0;
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 14px;
  color: var(--red);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
  line-height: 1;
}

.popup-btn:hover {
  background: #fdf0d5;
  border-color: var(--red);
}

.popup-btn svg {
  flex-shrink: 0;
}

/* ── Burger overlay ────────────────────────── */

.burger-icon-wrapper {
  background: none !important;
  border: none !important;
}

.burger-icon {
  font-size: 24px;
  line-height: 1;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

/* ── Cluster tooltip ───────────────────────── */

.cluster-tooltip-wrapper {
  padding: 0;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cluster-tooltip {
  font-size: 0.78rem;
  line-height: 1.6;
  max-height: 200px;
  overflow-y: auto;
}

.cluster-tooltip div {
  padding: 2px 4px;
}

/* ── Marker cluster overrides ──────────────── */

.marker-cluster-small {
  background-color: rgba(230, 57, 70, 0.25);
}

.marker-cluster-small div {
  background-color: rgba(230, 57, 70, 0.7);
  color: #fff;
}

.marker-cluster-medium {
  background-color: rgba(231, 111, 81, 0.25);
}

.marker-cluster-medium div {
  background-color: rgba(231, 111, 81, 0.7);
  color: #fff;
}

.marker-cluster-large {
  background-color: rgba(107, 66, 38, 0.25);
}

.marker-cluster-large div {
  background-color: rgba(107, 66, 38, 0.7);
  color: #fff;
}

/* ── Marker drop shadow ───────────────────── */

.leaflet-overlay-pane svg path {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* ── Cluster tooltip header ───────────────── */

.cluster-tooltip-header {
  font-weight: 600;
  font-size: 0.68rem;
  color: #888;
  padding: 4px 6px 2px;
  border-bottom: 1px solid #eee;
  margin-bottom: 2px;
}

/* ── Loading overlay ──────────────────────── */

.loading-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.loading-overlay.loaded {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #eee;
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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