/* Component-local chat styles migrated from src/styles/chat.css
   These styles are specific to the Chat v2 component and live
   next to the JSX to follow the project's migration rules.
*/

/* stylelint-disable no-descending-specificity */

/* Layout */
.chat-interface {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    to bottom,
    var(--color-surface-primary),
    var(--color-surface-secondary)
  );
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.chat-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}

/* Header - Glassmorphism */
.chat-header {
  flex-shrink: 0;
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface-primary);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-sm);
  z-index: var(--z-sticky);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.chat-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, var(--color-action-accent), var(--color-action-highlight));
  box-shadow: var(--shadow-glow-primary);
  margin-right: var(--space-4);
  animation: pulse-glow 3s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: var(--shadow-glow-primary);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 20px var(--color-action-primary);
    transform: scale(1.02);
  }
}

.chat-info h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-content-primary);
  margin: 0 0 var(--space-1) 0;
}

.chat-info p {
  font-size: 0.875rem;
  color: var(--color-content-secondary);
  margin: 0;
}

/* Scrollable Area */
.chat-scrollable-area {
  flex: 1;
  overflow: hidden auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  scroll-behavior: smooth;
  contain: content;
}

.chat-scrollable-area::-webkit-scrollbar {
  width: 8px;
}

.chat-scrollable-area::-webkit-scrollbar-track {
  background: var(--color-surface-primary);
}

.chat-scrollable-area::-webkit-scrollbar-thumb {
  background: var(--color-border-default);
  border-radius: var(--radius-full);
}

.chat-scrollable-area::-webkit-scrollbar-thumb:hover {
  background: var(--color-content-tertiary);
}

/* Messages Container */
.messages-container {
  flex: 1;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* Welcome Message */
.welcome-message {
  text-align: center;
  padding: var(--space-8);
  max-width: 600px;
  margin: auto;
  animation: fade-in 0.6s var(--ease-smooth);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-message p {
  font-size: 1.125rem;
  color: var(--color-content-primary);
  margin-bottom: var(--space-6);
  font-weight: 600;
}

.example-questions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.example-questions li {
  padding: var(--space-4);
  background: var(--color-surface-secondary);
  border: 1px solid var(--color-border-default);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.example-questions li:hover {
  background: var(--color-surface-hover);
  border-color: var(--color-action-primary);
  transform: translateX(4px);
}

/* Messages */
.message {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4);
  max-width: 80%;
  position: relative;
}

.message.user {
  margin-left: auto;
  background: linear-gradient(
    135deg,
    var(--color-action-primary),
    var(--color-action-primary-hover)
  );
  color: white;
  box-shadow: var(--shadow-md);
}

.message.bot {
  margin-right: auto;
  background: var(--color-surface-secondary);
  border-left: 4px solid var(--color-action-primary);
  box-shadow: var(--shadow-sm);
}

.message-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.message-content {
  flex: 1;
  min-width: 0;
}

.message-text {
  color: var(--color-content-primary);
  line-height: 1.5;
  overflow-wrap: break-word;
}

/* base rule for component-scoped message text (v2) */
.chat-interface .message-text {
  white-space: pre-wrap;
}

.message.user .message-text {
  color: var(--color-content-inverted);
}

/* Streaming Indicator */
.streaming-indicator {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: color-mix(in srgb, var(--color-action-primary), transparent 90%);
  border-radius: var(--radius-full);
  margin-top: var(--space-2);
  font-size: 0.875rem;
  color: var(--color-action-primary);
  font-weight: 500;
}

.typing-dots {
  display: flex;
  gap: 4px;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  background: var(--color-action-primary);
  border-radius: var(--radius-full);
  animation: bounce 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* Message Actions */
.message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.feedback-btn {
  padding: var(--space-2) var(--space-4);
  background: var(--color-surface-primary);
  border: 1.5px solid var(--color-border-default);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-content-secondary);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.feedback-btn:hover:not(:disabled) {
  background: var(--color-surface-secondary);
  border-color: var(--color-action-primary);
  color: var(--color-action-primary);
  transform: translateY(-2px);
}

.feedback-btn.useful.active {
  background: color-mix(in srgb, var(--color-status-success), transparent 80%);
  border-color: var(--color-status-success);
  color: var(--color-status-success);
}

/* Controls Area */
.chat-controls-area {
  flex-shrink: 0;
  background: var(--color-surface-primary);
  backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid var(--color-border-subtle);
  padding: var(--space-5) var(--space-6);
  box-shadow: 0 -4px 24px rgb(0 0 0 / 6%);
  z-index: var(--z-sticky);
}

.input-area {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: stretch;
}

.chat-input {
  flex: 1;
  padding: var(--space-4) var(--space-5);
  border: 2px solid var(--color-border-default);
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--color-surface-primary);
  color: var(--color-content-primary);
  resize: none;
  transition: all var(--duration-slow) var(--ease-smooth);
  line-height: 1.5;
  min-height: 44px;
}

.chat-input::placeholder {
  color: var(--color-content-tertiary);
}

.chat-input:focus {
  outline: none;
  border-color: var(--color-action-primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-action-primary), transparent 90%);
  transform: translateY(-2px);
}

/* Mobile Optimizations */
@media (width <= 768px) {
  .chat-header {
    padding: var(--space-3) var(--space-4);
  }
  .messages-container {
    padding: var(--space-4);
  }
  .message {
    max-width: 90%;
  }
  .chat-controls-area {
    padding: var(--space-3) var(--space-4);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .chat-interface *,
  .chat-interface *::before,
  .chat-interface *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Backward-compatibility utilities migrated from runtime-injected fallback */
.proposition-form-overlay,
.modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 50%);
  z-index: 900;
}

.proposition-form {
  max-width: 720px;
  width: 95%;
  margin: 0 1rem;
}

.streaming-controls-fixed {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1100;
}

.elapsed-timer,
.streaming-timer {
  background: var(--color-surface-primary);
  padding: 6px 10px;
  border: 1px solid var(--color-border-default);
  font-size: 0.9rem;
  color: var(--color-content-primary);
}

.bob-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.bob-modal-dialog {
  background: var(--color-surface-primary);
  padding: 1rem;
  max-width: 720px;
  width: 95%;
}

/* Provider status inside model modal */
.model-modal-providers {
  margin-top: 12px;
}
.model-modal-providers .provider-status {
  max-height: 220px;
  overflow: auto;
  padding: 6px;
  background: var(--color-surface-secondary);
  border: 1px solid var(--color-border-default);
}
.model-modal-providers .provider-status__header {
  cursor: default;
}
.model-modal-providers .provider-status__list {
  display: block;
}
.model-modal-providers .provider-item {
  padding: 8px;
  margin-bottom: 6px;
}

/* Single-column modal (legacy-like) layout: ProviderStatus above controls */
.model-mode-panel.model-mode-grid {
  max-width: 820px;
}
.model-mode-single {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}
.model-modal-providers {
  order: 0;
}
.model-mode-controls {
  order: 1;
}
/* Backcompat: keep two-column rules but prefer single-column by default */
.model-mode-columns {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.model-column {
  flex: 1;
  min-width: 0;
}
.model-column--status {
  flex-basis: 40%;
  max-width: 360px;
}
.model-column--controls {
  flex-basis: 60%;
  min-width: 280px;
}

.model-mode-presets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.model-mode-presets button {
  padding: 8px 12px;
  border: 1px solid var(--color-border-default);
  background: var(--color-surface-primary);
}

/* Ensure provider list shows compact inline metrics similar to legacy */
.model-modal-providers .provider-status__list {
  display: block;
}
.model-modal-providers .provider-item {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.model-modal-providers .provider-item__header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.model-modal-providers .provider-item__quick-stats,
.model-modal-providers .provider-metrics-inline {
  margin-left: 8px;
}

/* Centered modal card for provider/model selection */
.model-modal-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.model-modal-card {
  width: 720px;
  max-width: 94%;
  background: var(--color-surface-primary);
  border: 1px solid var(--color-border-default);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.model-modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border-subtle);
}
.model-modal-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.last-used {
  font-size: 0.95rem;
  color: var(--color-content-secondary);
}
.model-mode-presets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.preset-label {
  font-weight: 600;
  margin-right: 6px;
  color: var(--color-content-secondary);
}
.preset-select {
  padding: 8px 10px;
  border: 1px solid var(--color-border-default);
  background: var(--color-surface-secondary);
  color: var(--color-content-primary);
}

.selector-label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
.provider-selector,
.model-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.provider-row,
.model-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.provider-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.selector-select,
.preset-select {
  padding: 8px 10px;
  border: 1px solid var(--color-border-default);
  background: var(--color-surface-secondary);
}
.provider-option {
  padding: 8px 10px;
  border: 1px solid var(--color-border-default);
  background: var(--color-surface-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
}
.provider-option.selected {
  background: linear-gradient(
    90deg,
    var(--color-action-primary),
    color-mix(in srgb, var(--color-action-primary), black 8%)
  );
  color: var(--color-content-inverted);
  border-color: var(--color-action-primary);
}
.selector-select {
  padding: 8px 10px;
  border: 1px solid var(--color-border-default);
  background: var(--color-surface-primary);
  color: var(--color-content-primary);
  font-size: 0.95rem;
}
.provider-name {
  font-size: 0.95rem;
}
.provider-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.provider-metrics,
.model-metrics {
  padding: 0;
  background: transparent;
  border: 0;
}
.metric-hint {
  color: var(--color-content-secondary);
  font-size: 0.9rem;
}
.model-modal-footer {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  padding: 12px 20px;
  border-top: 1px solid var(--color-border-subtle);
}

.mode-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mode-option {
  padding: 8px 10px;
  border: 1px solid var(--color-border-default);
  background: transparent;
}
.mode-option.selected {
  background: var(--color-action-primary);
  color: #fff;
  border-color: var(--color-action-primary);
}

.custom-model-control input {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--color-border-default);
}
.model-mode-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 12px;
}

@media (max-width: 800px) {
  .model-mode-columns {
    flex-direction: column;
  }
  .model-column--status {
    max-width: none;
  }
}

/* Small op operations indicator (replaces tailwind utility classes) */
.op-operations {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-warning-background, #fff7ed);
  border: 1px solid var(--color-warning-border, #fde3b9);
  color: var(--color-warning, #92400e);
  padding: 6px 10px;
  font-size: 0.9rem;
  z-index: 1200;
}

.current-provider-info {
  font-size: 0.95rem;
  color: var(--color-content-secondary);
  margin-top: 8px;
}

/* ProviderStatus small adjustments inside modal */
.provider-item__use {
  padding: 6px 10px;
  border: 1px solid var(--color-border-default);
  background: transparent;
}
.provider-label {
  margin-left: 8px;
}

/* Minimal v2 chat styles adapted to project variables/utilities */
.chat-interface .chat-header {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-border-subtle);
  background: var(--color-surface-primary);
  display: flex;
  align-items: center;
}

.chat-interface .chat-avatar {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-secondary);
  margin-right: var(--space-3);
}

.chat-interface .chat-info .chat-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-content-primary);
}

.chat-interface .chat-info .chat-subtitle {
  font-size: 0.875rem;
  color: var(--color-content-secondary);
}

.chat-interface .chat-scrollable-area {
  padding: var(--space-3);
  /* JHR max-height: 60vh; */
  overflow: auto;
}

.chat-interface .messages-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.chat-interface .message {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  background: var(--color-surface-secondary);
  box-shadow: var(--shadow-sm);
  color: var(--color-content-primary);
}

.chat-interface .message.user {
  align-self: flex-end;
  background: var(--color-surface-tertiary);
  color: var(--color-content-inverted);
}

.chat-interface .message.bot {
  align-self: flex-start;
}

.chat-interface .message-avatar {
  display: inline-flex;
  margin-right: 0;
}

.chat-interface .message-content {
  overflow: hidden;
  flex: 1;
}

.chat-interface .streaming-indicator {
  font-size: 0.875rem;
  color: var(--color-content-secondary);
}

.chat-interface .cached-badge {
  display: inline-block;
  margin-left: var(--space-2);
  font-size: 0.75rem;
  color: var(--color-content-primary);
  background: var(--color-surface-tertiary);
  padding: 2px 6px;
}

.chat-interface .chat-controls-area {
  border-top: 1px solid var(--color-border-subtle);
  padding: var(--space-2) var(--space-3);
  background: var(--color-surface-primary);
}

.chat-interface .chat-input {
  width: 100%;
  min-height: 38px;
  padding: var(--space-2);
  border: 1px solid var(--color-border-default);
  background: transparent;
  color: var(--color-content-primary);
}

.chat-interface .controls-actions .btn {
  background: transparent;
  border: 1px solid transparent;
  padding: 6px 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chat-interface .btn-ghost {
  background: transparent;
  border: 1px solid var(--color-border-subtle);
}

.btn-label {
  font-size: 0.85rem;
  color: var(--color-content-primary);
  margin-left: 4px;
}

.controls-actions .btn .btn-label {
  display: inline-block;
}

.send-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
}
.send-btn .btn-label {
  font-weight: 700;
}
.send-btn-abort .btn-label {
  font-weight: 600;
}

.chat-interface .btn-primary {
  background: var(--color-action-primary);
  color: var(--color-content-inverted);
  padding: 6px 10px;
}

.chat-interface .send-btn {
  background: var(--color-action-primary);
  color: var(--color-content-inverted);
  padding: 6px 10px;
}

.chat-interface .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
}

.chat-interface .btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--color-action-primary);
}

.chat-interface .send-btn-abort {
  background: var(--color-status-error);
  color: var(--color-content-inverted);
}

.chat-interface .chat-op-status-bar {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: var(--color-bg-app);
  border: 1px solid var(--color-action-highlight);
  padding: var(--space-2) var(--space-3);
  box-shadow: var(--shadow-md);
}

.chat-interface .op-item {
  font-size: 0.8125rem;
  color: var(--color-action-accent);
}

/* Provider badges (v1-like visuals) */
.provider-badges-inline {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.provider-badge {
  appearance: none;
  border: 1px solid var(--color-border-default);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-surface-secondary), transparent 85%),
    var(--color-surface-secondary)
  );
  color: var(--color-content-primary);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 160ms var(--ease-smooth),
    box-shadow 160ms var(--ease-smooth),
    border-color 160ms var(--ease-smooth);
}

/* provider badge internals */
.provider-badge .provider-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: transparent;
}

.provider-icon-wrap svg {
  display: block;
  width: 18px;
  height: 18px;
  color: currentColor;
}
.provider-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.provider-badge .provider-name {
  display: inline-block;
  vertical-align: middle;
}

@media (width <= 520px) {
  .provider-badges-inline {
    gap: 6px;
  }

  .provider-badge {
    padding: 6px 8px;
    font-size: 0.825rem;
  }

  .provider-metrics-inline {
    font-size: 10px;
  }
}

.provider-badge:hover {
  transform: translateY(-2px);
  border-color: var(--color-action-primary);
  box-shadow: var(--shadow-md);
}

/* Active / selected provider visual state */
.provider-badge.active {
  background: linear-gradient(
    90deg,
    var(--color-action-primary),
    color-mix(in srgb, var(--color-action-primary), black 8%)
  );
  color: var(--color-content-inverted);
  border-color: var(--color-action-primary);
  box-shadow: var(--shadow-glow-primary);
  transform: translateY(-2px) scale(1.02);
}

.provider-badge.active:hover {
  transform: translateY(-2px) scale(1.02);
}

.provider-badge:active {
  transform: translateY(0);
}

.provider-badge[disabled],
.provider-badge[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
}

/* explicit disabled look when provider not configured */
.provider-badge.not-configured {
  opacity: 0.4;
  filter: grayscale(0.6) contrast(0.9);
}

/* Touch targets & focus styles */
.provider-badge,
.feedback-btn,
.send-btn,
.suggested-tag-btn,
.refined-bauhaus-btn {
  min-height: 44px;
  min-width: 44px;
}

.provider-badge:focus-visible,
.feedback-btn:focus-visible,
.send-btn:focus-visible,
.suggested-tag-btn:focus-visible,
.refined-bauhaus-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-border-focus), transparent 75%);
  border-color: var(--color-border-focus);
}

/* Send button disabled/hover states */
.chat-interface .send-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.chat-interface .send-btn:hover:not(:disabled) {
  transform: translateY(-2px);
}

.suggested-tag-btn {
  padding: 4px 8px;
  background: var(--color-surface-secondary);
  border: 1px solid var(--color-border-default);
  cursor: pointer;
  min-height: 40px;
}

/* Provider-specific simple color hints (optional) */
.provider-openai {
  background: linear-gradient(
    90deg,
    var(--color-bg-app),
    color-mix(in srgb, var(--color-bg-app), black 8%)
  );
  color: var(--color-content-inverted);
  border-color: color-mix(in srgb, var(--color-content-inverted), transparent 94%);
}

.provider-huggingface {
  background: linear-gradient(
    90deg,
    var(--color-action-highlight),
    color-mix(in srgb, var(--color-action-highlight), transparent 30%)
  );
  color: var(--color-content-primary);
}

/* Additional provider color hints */
.provider-mistral {
  background: linear-gradient(90deg, #0b6bff22, #0b6bff11);
  color: #0b6bff;
  border-color: color-mix(in srgb, #0b6bff, transparent 80%);
}
.provider-anthropic {
  background: linear-gradient(90deg, #6b42ff11, #6b42ff08);
  color: #6b42ff;
  border-color: color-mix(in srgb, #6b42ff, transparent 80%);
}
.provider-grok {
  background: linear-gradient(90deg, #ff8a3d11, #ff8a3d08);
  color: #ff8a3d;
  border-color: color-mix(in srgb, #ff8a3d, transparent 80%);
}
.provider-gemini {
  background: linear-gradient(90deg, #34c75911, #34c75908);
  color: #34c759;
  border-color: color-mix(in srgb, #34c759, transparent 80%);
}

.provider-metrics-inline {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--color-content-secondary);
}

/* ensure metrics don't wrap awkwardly on small screens */
.provider-metrics-inline .metric-badge {
  white-space: nowrap;
}

/* Model modal buttons */
.model-mode-panel button {
  padding: 6px 10px;
  border: 1px solid var(--color-border-default);
  background: var(--color-surface-secondary);
  cursor: pointer;
}

.model-mode-panel button:hover {
  border-color: var(--color-action-primary);
  transform: translateY(-1px);
}

.metric-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 3px 6px;
  background: color-mix(in srgb, var(--color-surface-primary), black 2%);
  border: 1px solid var(--color-border-default);
  border-radius: 999px;
  font-size: 11px;
  color: var(--color-content-secondary);
  box-shadow: none;
}

.metric-success {
  background: color-mix(in srgb, var(--color-status-success), transparent 80%);
  border-color: color-mix(in srgb, var(--color-status-success), transparent 60%);
  color: var(--color-status-success);
}

.metric-warning {
  background: color-mix(in srgb, var(--color-status-warning), transparent 80%);
  border-color: color-mix(in srgb, var(--color-status-warning), transparent 60%);
  color: var(--color-status-warning);
}

.metric-retry {
  background: color-mix(in srgb, var(--color-action-primary), transparent 88%);
  border-color: color-mix(in srgb, var(--color-action-primary), transparent 70%);
  color: var(--color-action-primary);
}

.metric-time {
  background: color-mix(in srgb, var(--color-surface-secondary), transparent 85%);
  border-color: var(--color-border-default);
  color: var(--color-content-secondary);
  font-weight: 600;
}

/* Latency / success rate specific styles */
.metric-latency.metric-latency-good {
  background: color-mix(in srgb, var(--color-status-success), transparent 86%);
  border-color: color-mix(in srgb, var(--color-status-success), transparent 60%);
  color: var(--color-status-success);
}
.metric-latency.metric-latency-warn {
  background: color-mix(in srgb, var(--color-status-warning), transparent 86%);
  border-color: color-mix(in srgb, var(--color-status-warning), transparent 60%);
  color: var(--color-status-warning);
}
.metric-latency.metric-latency-bad {
  background: color-mix(in srgb, var(--color-status-error), transparent 86%);
  border-color: color-mix(in srgb, var(--color-status-error), transparent 60%);
  color: var(--color-status-error);
}
.metric-latency.metric-latency-na {
  background: color-mix(in srgb, var(--color-surface-primary), black 2%);
  border-color: var(--color-border-default);
  color: var(--color-content-secondary);
}

.metric-success-rate.metric-success-good {
  background: color-mix(in srgb, var(--color-status-success), transparent 86%);
  border-color: color-mix(in srgb, var(--color-status-success), transparent 60%);
  color: var(--color-status-success);
}
.metric-success-rate.metric-success-warn {
  background: color-mix(in srgb, var(--color-status-warning), transparent 86%);
  border-color: color-mix(in srgb, var(--color-status-warning), transparent 60%);
  color: var(--color-status-warning);
}
.metric-success-rate.metric-success-bad {
  background: color-mix(in srgb, var(--color-status-error), transparent 86%);
  border-color: color-mix(in srgb, var(--color-status-error), transparent 60%);
  color: var(--color-status-error);
}
.metric-success-rate.metric-success-na {
  background: color-mix(in srgb, var(--color-surface-primary), black 2%);
  border-color: var(--color-border-default);
  color: var(--color-content-secondary);
}

.metric-hot {
  background: color-mix(in srgb, var(--color-action-accent), transparent 86%);
  color: var(--color-action-accent);
  border-color: color-mix(in srgb, var(--color-action-accent), transparent 80%);
}

/* --- Ported from legacy ChatWindow v1 fallback styles --- */
.thought-block {
  margin: 0.5rem 0;
}

.thought-summary {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.thought-toggle-icon {
  display: inline-block;
  transform: rotate(0);
  transition: transform 0.15s;
}

.thought-toggle-icon.open {
  transform: rotate(90deg);
}

.thought-content {
  padding: 0.5rem;
  background: var(--color-surface-secondary);
  margin-top: var(--space-2);
}

.consent-overlay {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.consent-modal {
  background: var(--color-surface-primary);
  padding: var(--space-4);
  max-width: 640px;
  width: 90%;
}

.notification-message {
  background: #fff3cd;
  padding: 6px;
}

.notification-link {
  text-decoration: underline;
  color: inherit;
}

.message-sources {
  margin-top: var(--space-2);
  background: var(--color-surface-secondary);
  padding: var(--space-2);
}

.sources-list .source-item {
  margin-bottom: var(--space-2);
}

.source-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.source-preview {
  color: var(--color-content-primary);
  opacity: 0.9;
  margin-top: 4px;
}

.feedback-buttons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 0.75rem;
}

.tags-input-container {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.tag-item {
  background: color-mix(in srgb, var(--color-action-highlight), transparent 86%);
  padding: 4px 8px;
  border-radius: 999px;
}

.remove-tag-btn {
  margin-left: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.tag-input {
  border: 1px solid var(--color-border-default);
  padding: 6px;
}

.suggested-tags {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@keyframes blink {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}

/* Model mode modal (v1 visuals) */
.model-mode-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Make overlay nearly opaque to hide busy backgrounds */
  background: rgba(12, 18, 24, 0.96);
  /* remove heavy blur for a cleaner, opaque backdrop */
  backdrop-filter: none;
  z-index: 1200;
}

.model-mode-panel {
  /* reuse system modal spacing/visuals for consistent UI */
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-surface-primary), black 4%),
    var(--color-surface-primary)
  );
  padding: var(--space-4);
  max-width: 780px;
  width: min(96%, 780px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-strong);
  display: flex;
  flex-direction: column;
  max-height: 86vh;
  overflow: auto;
}

.model-mode-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0.5rem;
}

.model-mode-panel header h3 {
  margin: 0;
  /* use system heading scale */
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-content-primary);
}

.model-mode-panel .model-mode-presets {
  margin-bottom: 0.75rem;
}

.model-mode-panel .model-mode-presets button {
  background: var(--color-surface-secondary);
  border: 1px solid var(--color-border-default);
  padding: 6px 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.provider-options {
  align-items: stretch;
}
.provider-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--color-border-default);
  background: var(--color-surface-secondary);
  cursor: pointer;
  font-weight: 600;
}
.provider-option:hover {
  transform: translateY(-2px);
  border-color: var(--color-action-primary);
}
.provider-option.selected {
  background: linear-gradient(
    90deg,
    var(--color-action-primary),
    color-mix(in srgb, var(--color-action-primary), black 8%)
  );
  color: var(--color-content-inverted);
  border-color: var(--color-action-primary);
}
.provider-option .provider-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.mode-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mode-option {
  padding: 8px 10px;
  border: 1px solid var(--color-border-default);
  background: var(--color-surface-secondary);
  cursor: pointer;
  font-weight: 600;
}
.mode-option.selected {
  background: linear-gradient(
    90deg,
    var(--color-action-primary),
    color-mix(in srgb, var(--color-action-primary), black 8%)
  );
  color: var(--color-content-inverted);
  border-color: var(--color-action-primary);
}

.custom-model-control input {
  padding: 10px;
  border: 1px solid var(--color-border-default);
}

.model-mode-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.model-mode-actions .btn {
  min-width: 90px;
}

@media (max-width: 720px) {
  .model-mode-panel {
    width: 94%;
    padding: 1rem;
    max-height: 88vh;
    overflow: auto;
  }
  .model-mode-control.grid {
    grid-template-columns: 1fr;
  }
}

.model-mode-presets {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.model-mode-control {
  margin-bottom: 0.5rem;
}

/* Grid layout for modal controls */
.model-mode-control.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.provider-list .provider-options,
.mode-list .mode-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.provider-option,
.mode-option {
  padding: 8px 10px;
  border: 1px solid var(--color-border-default);
  background: var(--color-surface-secondary);
  cursor: pointer;
  font-weight: 600;
}

.provider-option.selected,
.mode-option.selected {
  background: linear-gradient(
    90deg,
    var(--color-action-primary),
    color-mix(in srgb, var(--color-action-primary), black 8%)
  );
  color: var(--color-content-inverted);
  border-color: var(--color-action-primary);
}

.provider-option .provider-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

.custom-model-control input {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--color-border-default);
  background: var(--color-surface-primary);
}

@media (max-width: 720px) {
  .model-mode-control.grid {
    grid-template-columns: 1fr;
  }
}

.model-mode-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

/* ProviderStatus item action buttons */
.provider-item__use,
.provider-item__expand {
  padding: 6px 8px;
  border: 1px solid var(--color-border-default);
  background: var(--color-surface-secondary);
  cursor: pointer;
  font-size: 0.875rem;
  margin-left: 8px;
}
.provider-item__use[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(0.5);
}
.provider-item__expand {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* stylelint-enable no-descending-specificity */
/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}
/*! tailwindcss v4.1.17 | MIT License | https://tailwindcss.com */
/* ==========================================================================
   VARIABLES & TOKENS
   Layer 1: Primitives (The "Style")
   Layer 2: Semantics (The "Interface")
   ========================================================================== */
:root {
  /* ------------------------------------------------------------------------
     LAYER 1: PRIMITIVES
     Raw values defining the visual identity.
     ------------------------------------------------------------------------ */

  /* Color Palette */
  --palette-red: #b35a4a;
  --palette-blue: #3b4e6b;
  --palette-yellow: #c1a05a;
  --palette-white: #d0c1aa;
  --palette-black: #101013;

  /* Grayscale (Contrast Scale) */
  --palette-gray-50: rgb(26 24 22 / 90%);
  --palette-gray-100: rgb(40 36 32 / 90%);
  --palette-gray-200: rgb(60 56 52 / 90%);
  --palette-gray-300: rgb(84 78 72 / 90%);
  --palette-gray-400: rgb(112 104 96 / 92%);
  --palette-gray-500: rgb(140 130 120 / 94%);
  --palette-gray-600: rgb(170 158 144 / 95%);
  --palette-gray-700: rgb(198 186 168 / 96%);
  --palette-gray-800: rgb(224 214 192 / 97%);
  --palette-gray-900: rgb(248 242 230 / 99%);

  /* Functional Colors */
  --palette-success: #22c55e;
  --palette-success-soft: #4ade80;
  --palette-error: #ef4444;

  /* Fonts */
  --font-family-sans: "Outfit", sans-serif;
  --font-family-mono: "Fira Code", monospace;
  --font-family-display: "Inter", sans-serif;

  /* ------------------------------------------------------------------------
     LAYER 2: SEMANTICS
     Generic, reusable functional tokens mapped to primitives.
     Naming: [Property]-[Role]-[Prominence/State]
     ------------------------------------------------------------------------ */

  /* --- Typography --- */
  --font-body: var(--font-family-sans);
  --font-code: var(--font-family-mono);
  --font-display: var(--font-family-display);

  /* --- Colors: Backgrounds / Surfaces --- */
  --color-bg-app: var(--palette-black) !important;
  --color-surface-primary: rgb(248 242 230 / 6%) !important;
  --color-surface-secondary: rgb(248 242 230 / 10%) !important;
  --color-surface-tertiary: rgb(248 242 230 / 14%) !important;
  --color-surface-hover: rgb(248 242 230 / 18%) !important;
  --color-surface-active: rgb(248 242 230 / 22%) !important;

  /* --- Colors: Content (Text & Icons) --- */
  --color-content-primary: var(--palette-gray-900) !important;
  --color-content-secondary: var(--palette-gray-500) !important;
  --color-content-tertiary: var(--palette-gray-400) !important;
  --color-content-inverted: var(--palette-black) !important;

  /* --- Colors: Actions & Brand --- */
  --color-action-primary: var(--palette-blue) !important;
  --color-action-primary-hover: #2d3f54 !important;
  --color-action-accent: var(--palette-red) !important;
  --color-action-highlight: var(--palette-yellow) !important;
  --color-status-success: var(--palette-success) !important;
  --color-status-error: var(--palette-error) !important;

  /* --- Borders --- */
  --color-border-subtle: rgb(224 214 192 / 25%) !important;
  --color-border-default: rgb(224 214 192 / 35%) !important;
  --color-border-strong: rgb(224 214 192 / 55%) !important;
  --color-border-focus: var(--color-action-primary) !important;

  /* --- Spacing & Layout --- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --radius-full: 9999px;

  /* --- Motion & Depth --- */
  --z-negative: -1;
  --z-elevated: 10;
  --z-sticky: 100;
  --z-overlay: 1000;
  --z-modal: 2000;
  --z-toast: 3000;
  --duration-fast: 0.15s;
  --duration-normal: 0.25s;
  --duration-slow: 0.4s;
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 5%);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 10%), 0 2px 4px -1px rgb(0 0 0 / 6%);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -2px rgb(0 0 0 / 5%);
  --shadow-glow-primary: 0 0 15px rgb(59 78 107 / 30%);
}
/* ==========================================================================
   BAUHAUS MIGRATION LAYER
   WARNING: This file is for backward compatibility only.
   Do NOT use these classes in new components. Use semantic tokens instead.
   ========================================================================== */
/* Backgrounds */
.bg-bauhaus-black {
  background-color: var(--palette-black);
}
.bg-bauhaus-white {
  background-color: var(--palette-white);
}
.bg-bauhaus-blue {
  background-color: var(--palette-blue);
}
.bg-bauhaus-red {
  background-color: var(--palette-red);
}
.bg-bauhaus-yellow {
  background-color: var(--palette-yellow);
}
.bg-bauhaus-green {
  background-color: var(--palette-success);
}
/* Text Colors */
.text-bauhaus-black {
  color: var(--palette-black);
}
.text-bauhaus-white {
  color: var(--palette-white);
}
.text-bauhaus-blue {
  color: var(--palette-blue);
}
.text-bauhaus-red {
  color: var(--palette-red);
}
.text-bauhaus-yellow {
  color: var(--palette-yellow);
}
/* Border Colors */
.border-bauhaus-black {
  border-color: var(--palette-black);
}
.border-bauhaus-white {
  border-color: var(--palette-white);
}
.border-bauhaus-blue {
  border-color: var(--palette-blue);
}
.border-bauhaus-red {
  border-color: var(--palette-red);
}
.border-bauhaus-yellow {
  border-color: var(--palette-yellow);
}
/* Fonts */
.font-bauhaus {
  font-family: var(--font-display);
}
/* Shadows */
.shadow-bauhaus {
  box-shadow: 4px 4px 0 0 var(--palette-black);
}
.shadow-bauhaus-sm {
  box-shadow: 2px 2px 0 0 var(--palette-black);
}
.shadow-bauhaus-lg {
  box-shadow: 8px 8px 0 0 var(--palette-black);
}
/* ==========================================================================
   UTILITIES
   Generic helper classes.
   ========================================================================== */
/* Layout */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
/* Spacing */
.m-0 {
  margin: 0;
}
.p-0 {
  padding: 0;
}
/* Typography */
.text-center {
  text-align: center;
}
.font-bold {
  font-weight: 700;
}
.uppercase {
  text-transform: uppercase;
}
/* Visibility */
.hidden {
  display: none;
}
.block {
  display: block;
}
/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/* Focus Visible (Accessibility) */
:focus-visible {
  outline: 2px solid var(--color-action-primary);
  outline-offset: 2px;
}
/* Backgrounds */
.bg-light {
  background-color: var(--palette-white);
}
.bg-primary {
  background-color: var(--color-action-primary);
}
.bg-accent {
  background-color: var(--color-action-accent);
}
.bg-highlight {
  background-color: var(--color-action-highlight);
}
.text-light {
  color: var(--palette-white);
}
.border-accent {
  border-color: var(--color-action-accent);
}
.text-dark {
  color: var(--palette-black);
}
.bg-dark {
  background-color: var(--palette-black);
}
.border-light {
  border-color: var(--palette-white);
}
.text-primary {
  color: var(--color-action-primary);
}
.text-accent {
  color: var(--color-action-accent);
}
/* ==========================================================================
   BASE STYLES
   Resets and element defaults.
   ========================================================================== */
/* Modern Reset (Minimal) */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-bg-app);
  color: var(--color-content-primary);
  font-family: var(--font-body);
}
/* Images */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
/* Form elements inherit fonts */
input,
button,
textarea,
select {
  font: inherit;
}
/* Text wrapping */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin: 0;
}
/* Root stacking context */
#root {
  isolation: isolate;
}
/* ==========================================================================
   TYPOGRAPHY
   Headings, text styles, and markdown content.
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-content-primary);
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}
p {
  margin-bottom: var(--space-4);
  color: var(--color-content-secondary);
}
a {
  color: var(--color-action-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}
a:hover {
  color: var(--color-action-primary-hover);
}
code {
  font-family: var(--font-code);
  font-size: 0.9em;
  background: var(--color-surface-secondary);
  padding: 0.2em 0.4em;
  color: var(--color-action-highlight);
}
/* Markdown Content (Rich Text) */
.markdown-content {
  line-height: 1.6;
  color: var(--color-content-primary);
}
.markdown-content h1,
.markdown-content h2,
.markdown-content h3 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}
.markdown-content p {
  margin-bottom: var(--space-4);
}
.markdown-content ul,
.markdown-content ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}
.markdown-content li {
  margin-bottom: var(--space-2);
}
.markdown-content blockquote {
  border-left: 4px solid var(--color-action-primary);
  padding-left: var(--space-4);
  margin-left: 0;
  margin-right: 0;
  font-style: italic;
  color: var(--color-content-secondary);
  background: var(--color-surface-secondary);
  padding: var(--space-4);
}
.markdown-content pre {
  background: var(--color-surface-tertiary);
  padding: var(--space-4);
  overflow-x: auto;
  margin-bottom: var(--space-6);
  border: 1px solid var(--color-border-subtle);
}
.markdown-content pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}
/* Landing Page Typography */
.page-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-2);
  color: var(--color-content-primary);
}
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: var(--space-6);
  color: var(--color-content-primary);
  border-bottom: 2px solid var(--color-border-default);
  padding-bottom: var(--space-2);
}
.subsection-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--color-content-primary);
}
.section-description {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-content-secondary);
  margin-bottom: var(--space-8);
}
.hint-text {
  font-size: 0.9rem;
  color: var(--color-content-tertiary);
}
/* ==========================================================================
   BUTTONS
   Button styles and variants.
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-width: 140px;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform var(--duration-fast) var(--ease-smooth),
    box-shadow var(--duration-fast) var(--ease-smooth),
    opacity var(--duration-fast) var(--ease-smooth);
  font-family: var(--font-display);
  font-size: 1rem;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
/* Primary Button */
.btn-primary {
  letter-spacing: 0.05em;
  background: var(--color-action-primary);
  color: var(--color-content-inverted);
  box-shadow: 4px 4px 0 0 var(--color-bg-app);
  border: 2px solid var(--color-bg-app);
}
.btn-primary:hover:not(:disabled) {
  transform: translate(2px, 2px);
  box-shadow: none;
  background: var(--color-action-primary-hover);
}
/* Secondary Button */
.btn-secondary {
  letter-spacing: 0.05em;
  background: var(--color-bg-app);
  color: var(--color-content-primary);
  border: 2px solid var(--color-content-primary);
  box-shadow: 4px 4px 0 0 var(--color-content-primary);
}
.btn-secondary:hover:not(:disabled) {
  background: var(--color-surface-hover);
  transform: translate(2px, 2px);
  box-shadow: none;
}
/* Success Button */
.btn-success {
  letter-spacing: 0.05em;
  background: var(--color-status-success);
  color: var(--color-content-inverted);
  border: 2px solid var(--color-bg-app);
  box-shadow: 4px 4px 0 0 var(--color-bg-app);
}
.btn-success:hover:not(:disabled) {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-action-highlight);
}
/* Ghost Button */
.btn-ghost {
  letter-spacing: 0.05em;
  background: transparent;
  color: var(--color-content-primary);
  border: 2px solid var(--color-border-default);
}
.btn-ghost:hover:not(:disabled) {
  background: var(--color-surface-hover);
  border-color: var(--color-border-strong);
}
/* Action Buttons (Smaller) */
.btn-secondary-action,
.btn-tertiary-action {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--palette-white);
  background: var(--palette-black);
  color: var(--palette-white);
  transition:
    transform var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease;
}
.btn-secondary-action:hover,
.btn-tertiary-action:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
  background: var(--color-surface-hover);
}
/* Button outline danger variant */
.btn-outline-danger {
  background: transparent;
  color: var(--color-content-primary);
  border: 2px solid var(--color-content-primary);
  padding: var(--space-2) var(--space-3);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  text-align: center;
  display: inline-block;
}
.btn-outline-danger:hover {
  background: var(--color-action-accent);
  color: var(--color-bg-app);
  border-color: var(--color-action-accent);
  transform: translateY(-2px);
}
/* Small modifiers used by ChatWindow */
.btn-publish-wiki {
  margin-left: 0.5rem;
  padding: 0.5rem 0.9rem;
}
/* Compatibility: map lightweight send button to primary button styles */
.send-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
}
.send-btn-icon svg {
  display: block;
}
/* ==========================================================================
   FORMS
   Input fields, labels, and form layouts.
   ========================================================================== */
input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-content-primary);
  background: var(--color-bg-app);
  border: 2px solid var(--color-content-primary);
  padding: 0.5rem 0.75rem;
  width: 100%;
  transition:
    border-color var(--duration-fast) var(--ease-smooth),
    box-shadow var(--duration-fast) var(--ease-smooth);
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: var(--color-action-primary);
  box-shadow: 0 0 0 2px var(--shadow-glow-primary);
}
/* Proposition Form Specifics (Migrated) */
.proposition-form {
  max-width: 520px;
  width: 100%;
  background: var(--color-bg-app);
  box-shadow: 8px 8px 0 0 var(--color-border-strong);
  padding: 1.75rem 2rem;
  display: grid;
  gap: 1.25rem;
}
.form-header .close-btn:hover {
  background: var(--color-action-accent);
  color: var(--color-bg-app);
  transform: translate(2px, 2px);
  box-shadow: none;
}
.proposition-form .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-content-primary);
}
.proposition-form .form-input,
.proposition-form .form-textarea {
  width: 100%;
  border: 2px solid var(--color-content-primary);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  background: var(--color-bg-app);
  color: var(--color-content-primary);
  transition: all var(--duration-fast) ease;
  box-shadow: 4px 4px 0 0 var(--color-surface-tertiary);
}
.proposition-form .form-input:focus,
.proposition-form .form-textarea:focus {
  border-color: var(--color-action-primary);
  box-shadow: 4px 4px 0 0 var(--color-action-primary);
  outline: none;
  background: var(--color-bg-app);
}
.tags-input-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
/* Survey Form Elements */
.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-content-primary);
  font-size: 1.05rem;
}
.choice-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.choice-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  padding: var(--space-2);
  transition: background var(--duration-fast) ease;
}
.choice-label:hover {
  background: var(--color-surface-hover);
}
.choice-label input[type="radio"],
.choice-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}
/* ==========================================================================
   LAYOUT
   Global layout structures, containers, and navigation.
   ========================================================================== */
/* Main App Container */
.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-app);
  color: var(--color-content-primary);
}
/* Main Content Area */
main {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-4);
}
/* Navigation Bar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  background: var(--color-surface-primary);
  border-bottom: 1px solid var(--color-border-subtle);
}
.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-content-primary);
  text-decoration: none;
}
.navbar-links {
  display: flex;
  gap: var(--space-4);
}
.navbar-link {
  color: var(--color-content-secondary);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}
.navbar-link:hover,
.navbar-link.active {
  color: var(--color-action-primary);
}
/* Mobile Layout Utilities */
@media (width <= 768px) {
  main {
    padding: var(--space-2);
  }

  .navbar {
    padding: var(--space-3) var(--space-4);
  }
}
/* Accessibility: Skip Link */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-action-primary);
  color: var(--palette-white);
  padding: var(--space-2) var(--space-4);
  z-index: var(--z-overlay);
  text-decoration: none;
  transition: top var(--duration-fast) var(--ease-smooth);
}
.skip-link:focus {
  top: 0;
}
/* Site Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: var(--color-surface-primary);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: var(--space-4);
  transition: transform var(--duration-normal) var(--ease-smooth);
}
.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Navigation Toggle */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  color: var(--color-content-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Navigation Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 50%);
  z-index: var(--z-overlay);
  backdrop-filter: blur(4px);
}
.nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background: var(--color-bg-app);
  padding: var(--space-6);
  z-index: var(--z-modal);
  box-shadow: var(--shadow-lg);
  transform: translateX(0);
  transition: transform var(--duration-normal) var(--ease-smooth);
}
.nav-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-content-primary);
}
/* Navigation List */
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.nav-item {
  width: 100%;
}
.nav-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--color-content-secondary);
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-smooth);
  font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
  background-color: var(--color-surface-hover);
  color: var(--color-action-primary);
  transform: translateX(4px);
}
/* Gesture Menu Panel - slides in from specified edge */
.gesture-menu-panel {
  position: fixed;
  background: var(--color-bg-app);
  border: 3px solid var(--color-border-strong);
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform var(--duration-normal) var(--ease-smooth);
  box-shadow: 0 4px 20px rgb(0 0 0 / 30%);
}
.gesture-menu-panel--top {
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
}
.gesture-menu-panel--bottom {
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
}
.gesture-menu-panel--left {
  top: 0;
  bottom: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  transform: translateX(-100%);
}
.gesture-menu-panel--right {
  top: 0;
  bottom: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  transform: translateX(100%);
}
.gesture-menu-panel.is-open {
  transform: translate(0, 0);
}
/* ==========================================================================
   WIKI
   Styles specific to the Wiki section.
   ========================================================================== */
.wiki-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-6);
  min-height: calc(100vh - 80px);

  /* Adjust based on header/footer */
}
.wiki-sidebar {
  background: var(--color-surface-secondary);
  padding: var(--space-4);
  border-right: 1px solid var(--color-border-subtle);
  overflow-y: auto;
}
.wiki-content {
  padding: var(--space-4);
  max-width: 800px;
}
.wiki-page-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-2);
  color: var(--color-content-primary);
}
.wiki-meta {
  color: var(--color-content-tertiary);
  font-size: 0.9rem;
  margin-bottom: var(--space-6);
  display: flex;
  gap: var(--space-4);
}
/* Wiki Card (Grid View) */
.wiki-card {
  background: var(--color-surface-primary);
  border: 1px solid var(--color-border-default);
  padding: var(--space-4);
  transition:
    transform var(--duration-fast) var(--ease-smooth),
    box-shadow var(--duration-fast) var(--ease-smooth);
}
.wiki-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-action-primary);
}
.wiki-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
}
.wiki-card p {
  color: var(--color-content-secondary);
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (width <= 768px) {
  .wiki-container {
    grid-template-columns: 1fr;
  }

  .wiki-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--color-border-subtle);
  }
}
/* ==========================================================================
   LANDING PAGE
   Styles specific to the landing page and citizen survey.
   ========================================================================== */
.landing-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);

  /* Adjust based on header/footer height */
  padding: var(--space-4);
}
.landing-card {
  background: var(--color-bg-app);
  border: 1px solid var(--color-border-default);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-smooth);
}
.landing-card-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  background: var(--color-surface-secondary);
  border: none;
  border-bottom: 1px solid var(--color-border-subtle);
  color: var(--color-content-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-smooth);
}
.landing-card-header:hover {
  background: var(--color-surface-tertiary);
}
.landing-card-body {
  padding: var(--space-6);
  animation: slideDown var(--duration-normal) var(--ease-smooth);
}
.landing-content {
  margin-top: var(--space-6);
}
.question-set {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.question-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.success-message {
  text-align: center;
  padding: var(--space-8);
  max-width: 600px;
  margin: 0 auto;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==========================================================================
   FOOTER
   Site footer styles.
   ========================================================================== */
footer {
  margin-top: var(--space-8);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-subtle);
  text-align: center;
  background: var(--color-surface-primary);
  padding-bottom: var(--space-8);
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.footer-links {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-link {
  color: var(--color-content-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--duration-fast) ease;
}
.footer-link:hover {
  color: var(--color-action-primary);
}
.footer-copyright {
  color: var(--color-content-tertiary);
  font-size: 0.85rem;
}
/* Theme Toggle in Footer */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--color-border-default);
  color: var(--color-content-secondary);
  padding: var(--space-2) var(--space-4);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: all var(--duration-fast) ease;
}
.theme-toggle-btn:hover {
  background: var(--color-surface-hover);
  color: var(--color-content-primary);
}
/* ==========================================================================
   SITE FOOTER
   Collapsible footer with auth status, navigation, and legal links
   ========================================================================== */
.site-footer {
  position: relative;
  width: 100%;
  background: var(--color-bg-app);
  border-top: 3px solid var(--color-border-strong);
  transition: transform var(--duration-normal) var(--ease-smooth);
  margin-top: auto;

  /* Push to bottom if in flex container */
}
.site-footer--hidden {
  transform: translateY(100%);
}
/* Toggle button */
.site-footer-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface-secondary);
  border: none;
  border-bottom: 2px solid var(--color-border-medium);
  cursor: pointer;
  transition: background var(--duration-fast) ease;
}
.site-footer-toggle:hover {
  background: var(--color-surface-hover);
}
.site-footer-toggle-label {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-content-primary);
  font-family: var(--font-display);
}
.site-footer-toggle-icon {
  width: 24px;
  height: 24px;
  color: var(--color-content-primary);
  transition: transform var(--duration-normal) var(--ease-smooth);
}
/* Collapsible panel */
.site-footer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-smooth);
}
.site-footer-panel--collapsed {
  max-height: 0;
}
.site-footer-panel--expanded {
  max-height: 600px;
}
.site-footer-inner {
  padding: var(--space-4) var(--space-4) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
/* Auth section */
.site-footer-auth {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--color-surface-tertiary);
  border: 2px solid var(--color-border-medium);
}
.site-footer-auth-main {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.site-footer-auth-user {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.site-footer-auth-name {
  font-weight: 600;
  color: var(--color-content-primary);
}
.site-footer-auth-neighborhood {
  font-size: 0.9rem;
  color: var(--color-content-secondary);
}
.site-footer-auth-button {
  padding: var(--space-2) var(--space-3);
  border: 2px solid var(--color-border-strong);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  text-decoration: none;
  display: inline-block;
}
.site-footer-auth-button--primary {
  background: var(--color-action-primary);
  color: var(--color-bg-app);
  border-color: var(--color-border-strong);
}
.site-footer-auth-button--primary:hover {
  background: var(--color-action-accent);
  transform: translateY(-2px);
}
.site-footer-auth-button--danger {
  background: transparent;
  color: var(--color-content-primary);
  border-color: var(--color-content-primary);
}
.site-footer-auth-button--danger:hover {
  background: var(--color-action-accent);
  color: var(--color-bg-app);
  border-color: var(--color-action-accent);
}
/* Navigation links */
.site-footer-meta-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-content-secondary);
  margin-bottom: var(--space-1);
}
.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* or less */
  margin: 0.5rem 0;
}
.site-footer-link {
  color: var(--color-content-secondary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.2em 0.6em;
  font-size: 0.95em;
  line-height: 1.2;
}
.site-footer-link:hover {
  border-bottom-color: var(--color-action-primary);
}
/* Version & Legal */
.site-footer-version {
  font-size: 0.5rem;
  color: var(--color-content-secondary);
  padding: var(--space-2);
  text-align: center;
}
.site-footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border-medium);
  font-size: 0.9rem;
  color: var(--color-content-secondary);
}
.site-footer-legal span {
  color: var(--color-content-secondary);
}
.site-footer-auth,
.site-footer-version,
.site-footer-legal {
  margin: 0 0;
}
/* ==========================================================================
   UI COMPONENTS
   Reusable UI components (Cards, Tabs, Accordions, etc.).
   ========================================================================== */
/* Theme Card (Bauhaus Style) */
.theme-card {
  background: var(--color-surface-primary);
  border: 2px solid var(--color-border-strong);
  box-shadow: 4px 4px 0 0 var(--color-border-strong);
  transition:
    transform var(--duration-normal) var(--ease-smooth),
    box-shadow var(--duration-normal) var(--ease-smooth);
  padding: var(--space-6);
}
.theme-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--color-border-strong);
}
/* Loading Spinner */
.loading-spinner {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--color-action-highlight);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Icon Rotated State */
.icon-rotated {
  transform: rotate(180deg);
  transition: transform var(--duration-normal) var(--ease-smooth);
}
/* Success Message Box */
.success-message {
  border: 2px solid var(--color-status-success);
  box-shadow: 8px 8px 0 0 var(--color-status-success);
  color: var(--color-status-success);
  padding: var(--space-6);
  background: var(--color-bg-app);
}
.success-message h2 {
  color: var(--color-status-success);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.success-message p {
  color: var(--color-content-primary);
}
/* Bordered Section */
.bordered-section {
  border: 2px solid var(--color-border-default);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.bordered-section-primary {
  border-color: var(--color-action-primary);
}
.bordered-section-accent {
  border-color: var(--color-action-accent);
}
/* Avatar Components */
.avatar-container {
  width: 128px;
  height: 128px;
  overflow: hidden;
  background: var(--color-surface-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-placeholder {
  width: 128px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-content-tertiary);
  font-size: 3rem;
}
.avatar-image {
  object-fit: cover;
  width: 128px;
  height: 128px;
}
/* Tab Navigation */
.tabs-nav {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  border-bottom: 2px solid var(--color-border-default);
  padding-bottom: var(--space-2);
}
.tab-item {
  padding: var(--space-3) var(--space-5);
  font-weight: 600;
  font-family: var(--font-display);
  background: transparent;
  color: var(--color-content-secondary);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    color var(--duration-fast) var(--ease-smooth),
    border-color var(--duration-fast) var(--ease-smooth),
    transform var(--duration-fast) var(--ease-smooth);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}
.tab-item:hover {
  color: var(--color-content-primary);
  border-bottom-color: var(--color-action-highlight);
}
.tab-item.active {
  color: var(--color-action-primary);
  border-bottom-color: var(--color-action-primary);
  background: var(--color-surface-primary);
}
/* Filter Chips */
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-display);
  background: var(--color-surface-secondary);
  color: var(--color-content-primary);
  border: 2px solid var(--color-border-default);
  cursor: pointer;
  transition:
    transform var(--duration-fast) var(--ease-smooth),
    background var(--duration-fast) var(--ease-smooth),
    border-color var(--duration-fast) var(--ease-smooth),
    box-shadow var(--duration-fast) var(--ease-smooth);
}
.filter-chip:hover {
  background: var(--color-surface-hover);
  border-color: var(--color-border-strong);
  transform: translate(-1px, -1px);
  box-shadow: 2px 2px 0 0 var(--color-border-strong);
}
.filter-chip.active {
  background: var(--color-action-primary);
  color: var(--color-content-inverted);
  border-color: var(--color-action-primary);
  box-shadow: 3px 3px 0 0 var(--color-border-strong);
}
/* Filter Chip Color Variants */
.filter-chip--blue {
  border-color: var(--palette-blue);
}
.filter-chip--blue.active {
  background: var(--palette-blue);
  box-shadow: 3px 3px 0 0 var(--palette-blue);
}
.filter-chip--yellow {
  border-color: var(--palette-yellow);
}
.filter-chip--yellow.active {
  background: var(--palette-yellow);
  color: var(--palette-black);
  box-shadow: 3px 3px 0 0 var(--palette-yellow);
}
.filter-chip--red {
  border-color: var(--palette-red);
}
.filter-chip--red.active {
  background: var(--palette-red);
  box-shadow: 3px 3px 0 0 var(--palette-red);
}
/* ==========================================================================
   MODALS
   Modal dialogs and overlays.
   ========================================================================== */
/* Consent Modal */
.consent-modal {
  max-width: 480px;
  width: 90%;
  padding: 2rem;
  text-align: center;
  background: var(--color-surface-primary);
  border: 2px solid var(--color-border-strong);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: var(--z-modal);
}
.consent-modal h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-content-primary);
  margin-bottom: 0.75rem;
}
.consent-modal p {
  color: var(--color-content-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.45;
}
.consent-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}
/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-bg-app);
  opacity: 0.8;
  z-index: var(--z-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
/* chat.css — placeholder for truly shared chat utilities
   Most chat-specific styles have been migrated to component-local
   `src/components/bob/v2/chat-v2.css` as part of the componentization migration.

   Keep this file minimal and only include classes that are reused
   across multiple pages/components (if any).
*/
/* Shared scrollbar utility used in multiple components */
.shared-scrollbar::-webkit-scrollbar {
  width: 8px;
}
.shared-scrollbar::-webkit-scrollbar-thumb {
  background: var(--color-border-default);
}
/* ==========================================================================
   PROVIDER STATUS
   AI Provider status display component.
   Uses ONLY semantic tokens from variables.css.
   ========================================================================== */
.provider-status {
  background: var(--color-surface-primary);
  border: 1px solid var(--color-border-default);
  font-size: 0.8125rem;
  transition: all var(--duration-normal) ease;
}
/* Display Modes */
.provider-status--hidden {
  display: none;
}
.provider-status--compact {
  max-height: 200px;
  overflow-y: auto;
}
.provider-status--detailed {
  max-height: 400px;
  overflow-y: auto;
}
/* Header */
.provider-status__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  cursor: pointer;
  user-select: none;
  background: var(--color-surface-secondary);
  border-bottom: 1px solid var(--color-border-default);
  min-height: 44px;

  /* Touch target */
}
.provider-status__header:hover {
  background: var(--color-surface-hover);
}
.provider-status__title {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  color: var(--color-content-secondary);
}
.provider-status__toggle {
  background: none;
  border: none;
  color: var(--color-content-secondary);
  cursor: pointer;
  font-size: 0.625rem;
  padding: var(--space-1);
  opacity: 0.7;
  transition: opacity var(--duration-normal);
  min-width: 44px;
  min-height: 44px;
}
.provider-status__toggle:hover {
  opacity: 1;
}
/* List */
.provider-status__list {
  padding: var(--space-1);
}
/* Provider Item */
.provider-item {
  margin-bottom: var(--space-1);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color var(--duration-normal);
}
.provider-item:hover {
  border-color: var(--color-border-strong);
}
.provider-item__header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  cursor: pointer;
  background: var(--color-surface-primary);
  transition: background var(--duration-normal);
  min-height: 44px;
}
.provider-item__header:hover {
  background: var(--color-surface-hover);
}
.provider-item__icon {
  font-size: 14px;
  flex-shrink: 0;
}
.provider-item__name {
  font-weight: 500;
  flex-grow: 1;
  text-transform: capitalize;
  color: var(--color-content-primary);
}
.provider-item__quick-stats {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.6875rem;
  color: var(--color-content-secondary);
}
.provider-item__expand {
  background: none;
  border: none;
  color: var(--color-content-secondary);
  cursor: pointer;
  font-size: 16px;
  padding: 0 var(--space-1);
  opacity: 0.6;
  transition: opacity var(--duration-normal);
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
}
.provider-item__expand:hover {
  opacity: 1;
}
/* Not Configured */
.provider-item__not-configured {
  padding: var(--space-1) var(--space-3) var(--space-2) calc(var(--space-3) * 2);
  font-size: 0.6875rem;
  color: var(--color-content-tertiary);
  font-style: italic;
}
/* Models List */
.provider-item__models {
  padding: var(--space-1) 0 var(--space-1) var(--space-6);
  background: var(--color-surface-tertiary);
  border-top: 1px solid var(--color-border-default);
}
/* Model Item */
.model-item {
  padding: var(--space-2) var(--space-3);
  margin: var(--space-1) 0;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all var(--duration-normal);
}
.model-item:hover {
  background: var(--color-surface-hover);
}
/* Model Status Colors */
.model-item--available {
  border-left-color: var(--color-status-success);
}
.model-item--rate_limited {
  border-left-color: var(--color-action-highlight);
}
.model-item--error,
.model-item--quota_exceeded {
  border-left-color: var(--color-status-error);
  opacity: 0.7;
}
.model-item--unknown {
  border-left-color: var(--color-content-tertiary);
  opacity: 0.6;
}
.model-item--recent {
  background: color-mix(in srgb, var(--color-action-highlight), transparent 90%);
}
.model-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-1);
}
.model-item__name {
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: capitalize;
  color: var(--color-content-primary);
}
.model-item__badge {
  font-size: 0.75rem;
}
.model-item__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 0.6875rem;
}
.stat {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-2);
  background: var(--color-surface-hover);
  white-space: nowrap;
}
.stat--time {
  color: #64b5f6;
}
.stat--success {
  color: var(--color-status-success);
}
.stat--retry {
  color: var(--color-action-highlight);
}
.stat--errors {
  color: var(--color-status-error);
}
/* Scrollbar */
.provider-status--compact::-webkit-scrollbar,
.provider-status--detailed::-webkit-scrollbar {
  width: 6px;
}
.provider-status--compact::-webkit-scrollbar-track,
.provider-status--detailed::-webkit-scrollbar-track {
  background: var(--color-surface-primary);
}
.provider-status--compact::-webkit-scrollbar-thumb,
.provider-status--detailed::-webkit-scrollbar-thumb {
  background: var(--color-border-default);
}
.provider-status--compact::-webkit-scrollbar-thumb:hover,
.provider-status--detailed::-webkit-scrollbar-thumb:hover {
  background: var(--color-border-strong);
}
/* Inline metrics helper used by several provider components */
.provider-metrics-inline {
  display: flex;
  gap: var(--space-2);
  align-items: center;
  flex-wrap: wrap;
}
/* Mobile Optimizations */
@media (width <= 768px) {
  .provider-status {
    font-size: 0.75rem;
  }

  .provider-status--compact {
    max-height: 150px;
  }

  .provider-status--detailed {
    max-height: 300px;
  }
}
@media (width <= 480px) {
  .provider-item__quick-stats .stat {
    display: none;
  }

  .provider-item__quick-stats :first-child {
    display: inline-flex;
  }
}
/* Missing CSS Classes for App.jsx Survey Form */
/* Emphasized form label variant - for important labels like "Quartier" */
.form-label--emphasis {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--color-action-accent);
  font-size: 1.1rem;
}
/* Helper text - inline explanatory text in lighter weight */
.helper-text {
  font-size: 0.9em;
  font-weight: 400;
  color: var(--color-content-secondary);
  font-style: italic;
}
/* Info box - Container for contact/participation sections */
.info-box {
  background: var(--color-surface-secondary);
  border: 2px solid var(--color-border-medium);
  padding: var(--space-4);
  margin-top: var(--space-4);
}
/* Kanban Board Styles */
.kanban-board-container {
  position: relative;
}
.kanban-board {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  min-height: 500px;
}
/* Kanban Column */
.kanban-column {
  flex-shrink: 0;
  width: 20rem;
  display: flex;
  flex-direction: column;
}
.kanban-column-header {
  padding: 0.75rem;
  border-radius: 0.5rem 0.5rem 0 0;
  border: 2px solid;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.kanban-column-body {
  padding: 0.5rem;
  background-color: var(--color-gray-50, #f9fafb);
  border-radius: 0 0 0.5rem 0.5rem;
  border: 2px solid var(--color-gray-200, #e5e7eb);
  border-top: 0;
  min-height: 24rem;
  flex: 1;
  overflow-y: auto;
}
.kanban-column-body > * + * {
  margin-top: 0.5rem;
}
/* Task Cards */
.task-card {
  background: white;
  border-radius: 0.5rem;
  border: 1px solid var(--color-gray-200, #e5e7eb);
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.task-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary-300, #93c5fd);
}
.task-card-dragging {
  opacity: 0.5;
  transform: rotate(2deg);
}
/* Priority Indicators */
.priority-low {
  border-left: 3px solid var(--color-gray-400, #9ca3af);
}
.priority-medium {
  border-left: 3px solid var(--color-blue-500, #3b82f6);
}
.priority-high {
  border-left: 3px solid var(--color-orange-500, #f97316);
}
.priority-urgent {
  border-left: 3px solid var(--color-red-500, #ef4444);
  animation: pulse-urgent 2s infinite;
}
@keyframes pulse-urgent {
  0%,
  100% {
    border-color: #ef4444;
  }
  50% {
    border-color: #fca5a5;
  }
}
/* Drag & Drop Feedback */
.droppable-active {
  background-color: var(--color-blue-50, #eff6ff);
  border-color: var(--color-blue-300, #93c5fd);
}
.droppable-over {
  background-color: var(--color-green-50, #f0fdf4);
  border-color: var(--color-green-300, #86efac);
}
/* Responsive Kanban */
@media (max-width: 768px) {
  .kanban-column {
    width: 16rem;
  }
}
@media (max-width: 640px) {
  .kanban-column {
    width: 100%;
    min-width: 100%;
  }

  .kanban-board {
    flex-direction: column;
  }
}
/* Loading States */
.kanban-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  color: var(--color-gray-500, #6b7280);
}
/* Empty State */
.kanban-empty {
  text-align: center;
  padding: 2rem;
  color: var(--color-gray-400, #9ca3af);
  font-style: italic;
}
/* Task Labels */
.task-label {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background-color: var(--color-gray-100, #f3f4f6);
  color: var(--color-gray-700, #374151);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}
/* Assignee Avatars */
.task-assignees {
  display: flex;
  align-items: center;
  gap: -0.5rem;
}
.task-avatar {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: var(--color-gray-300, #d1d5db);
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gray-600, #4b5563);
}
/* Compact Mode */
.task-card.compact {
  padding: 0.5rem;
}
.task-card.compact .task-title {
  font-size: 0.875rem;
}
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-scale-x: 1;
      --tw-scale-y: 1;
      --tw-scale-z: 1;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-space-y-reverse: 0;
      --tw-space-x-reverse: 0;
      --tw-divide-y-reverse: 0;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-ordinal: initial;
      --tw-slashed-zero: initial;
      --tw-numeric-figure: initial;
      --tw-numeric-spacing: initial;
      --tw-numeric-fraction: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-outline-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
      --tw-duration: initial;
      --tw-ease: initial;
    }
  }
}
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --color-red-50: oklch(97.1% .013 17.38);
    --color-red-100: oklch(93.6% .032 17.717);
    --color-red-200: oklch(88.5% .062 18.334);
    --color-red-300: oklch(80.8% .114 19.571);
    --color-red-400: oklch(70.4% .191 22.216);
    --color-red-500: oklch(63.7% .237 25.331);
    --color-red-600: oklch(57.7% .245 27.325);
    --color-red-700: oklch(50.5% .213 27.518);
    --color-red-800: oklch(44.4% .177 26.899);
    --color-orange-50: oklch(98% .016 73.684);
    --color-orange-100: oklch(95.4% .038 75.164);
    --color-orange-300: oklch(83.7% .128 66.29);
    --color-orange-400: oklch(75% .183 55.934);
    --color-orange-500: oklch(70.5% .213 47.604);
    --color-orange-600: oklch(64.6% .222 41.116);
    --color-orange-700: oklch(55.3% .195 38.402);
    --color-amber-500: oklch(76.9% .188 70.08);
    --color-amber-600: oklch(66.6% .179 58.318);
    --color-yellow-50: oklch(98.7% .026 102.212);
    --color-yellow-100: oklch(97.3% .071 103.193);
    --color-yellow-200: oklch(94.5% .129 101.54);
    --color-yellow-300: oklch(90.5% .182 98.111);
    --color-yellow-400: oklch(85.2% .199 91.936);
    --color-yellow-500: oklch(79.5% .184 86.047);
    --color-yellow-600: oklch(68.1% .162 75.834);
    --color-yellow-700: oklch(55.4% .135 66.442);
    --color-yellow-800: oklch(47.6% .114 61.907);
    --color-yellow-900: oklch(42.1% .095 57.708);
    --color-green-50: oklch(98.2% .018 155.826);
    --color-green-100: oklch(96.2% .044 156.743);
    --color-green-200: oklch(92.5% .084 155.995);
    --color-green-300: oklch(87.1% .15 154.449);
    --color-green-500: oklch(72.3% .219 149.579);
    --color-green-600: oklch(62.7% .194 149.214);
    --color-green-700: oklch(52.7% .154 150.069);
    --color-green-800: oklch(44.8% .119 151.328);
    --color-teal-600: oklch(60% .118 184.704);
    --color-teal-700: oklch(51.1% .096 186.391);
    --color-blue-50: oklch(97% .014 254.604);
    --color-blue-100: oklch(93.2% .032 255.585);
    --color-blue-200: oklch(88.2% .059 254.128);
    --color-blue-300: oklch(80.9% .105 251.813);
    --color-blue-400: oklch(70.7% .165 254.624);
    --color-blue-500: oklch(62.3% .214 259.815);
    --color-blue-600: oklch(54.6% .245 262.881);
    --color-blue-700: oklch(48.8% .243 264.376);
    --color-blue-800: oklch(42.4% .199 265.638);
    --color-blue-900: oklch(37.9% .146 265.522);
    --color-indigo-50: oklch(96.2% .018 272.314);
    --color-indigo-100: oklch(93% .034 272.788);
    --color-indigo-300: oklch(78.5% .115 274.713);
    --color-indigo-400: oklch(67.3% .182 276.935);
    --color-indigo-500: oklch(58.5% .233 277.117);
    --color-indigo-600: oklch(51.1% .262 276.966);
    --color-indigo-700: oklch(45.7% .24 277.023);
    --color-indigo-800: oklch(39.8% .195 277.366);
    --color-purple-100: oklch(94.6% .033 307.174);
    --color-purple-300: oklch(82.7% .119 306.383);
    --color-purple-500: oklch(62.7% .265 303.9);
    --color-purple-600: oklch(55.8% .288 302.321);
    --color-purple-700: oklch(49.6% .265 301.924);
    --color-purple-800: oklch(43.8% .218 303.724);
    --color-pink-100: oklch(94.8% .028 342.258);
    --color-pink-600: oklch(59.2% .249 .584);
    --color-pink-800: oklch(45.9% .187 3.815);
    --color-slate-50: oklch(98.4% .003 247.858);
    --color-slate-100: oklch(96.8% .007 247.896);
    --color-slate-200: oklch(92.9% .013 255.508);
    --color-slate-300: oklch(86.9% .022 252.894);
    --color-slate-500: oklch(55.4% .046 257.417);
    --color-slate-600: oklch(44.6% .043 257.281);
    --color-slate-700: oklch(37.2% .044 257.287);
    --color-slate-800: oklch(27.9% .041 260.031);
    --color-slate-900: oklch(20.8% .042 265.755);
    --color-gray-50: oklch(98.5% .002 247.839);
    --color-gray-100: oklch(96.7% .003 264.542);
    --color-gray-200: oklch(92.8% .006 264.531);
    --color-gray-300: oklch(87.2% .01 258.338);
    --color-gray-400: oklch(70.7% .022 261.325);
    --color-gray-500: oklch(55.1% .027 264.364);
    --color-gray-600: oklch(44.6% .03 256.802);
    --color-gray-700: oklch(37.3% .034 259.733);
    --color-gray-800: oklch(27.8% .033 256.848);
    --color-gray-900: oklch(21% .034 264.665);
    --color-black: #000;
    --color-white: #fff;
    --spacing: .25rem;
    --container-sm: 24rem;
    --container-md: 28rem;
    --container-lg: 32rem;
    --container-2xl: 42rem;
    --container-3xl: 48rem;
    --container-4xl: 56rem;
    --container-5xl: 64rem;
    --container-6xl: 72rem;
    --container-7xl: 80rem;
    --text-xs: .75rem;
    --text-xs--line-height: calc(1 / .75);
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25 / .875);
    --text-base: 1rem;
    --text-base--line-height: calc(1.5 / 1);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --text-6xl: 3.75rem;
    --text-6xl--line-height: 1;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --tracking-tighter: -.05em;
    --tracking-wide: .025em;
    --tracking-widest: .1em;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-relaxed: 1.625;
    --radius-md: .375rem;
    --radius-lg: .5rem;
    --radius-xl: .75rem;
    --shadow-sm: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
    --shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
    --shadow-lg: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
    --drop-shadow-xl: 0 9px 7px #0000001a;
    --ease-in-out: cubic-bezier(.4, 0, .2, 1);
    --animate-spin: spin 1s linear infinite;
    --animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
    --blur-sm: 8px;
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer components;
@layer utilities {
  .pointer-events-auto {
    pointer-events: auto;
  }

  .pointer-events-none {
    pointer-events: none;
  }

  .invisible {
    visibility: hidden;
  }

  .visible {
    visibility: visible;
  }

  .sr-only {
    clip-path: inset(50%);
    white-space: nowrap;
    border-width: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden;
  }

  .absolute {
    position: absolute;
  }

  .fixed {
    position: fixed;
  }

  .relative {
    position: relative;
  }

  .static {
    position: static;
  }

  .sticky {
    position: sticky;
  }

  .inset-0 {
    inset: calc(var(--spacing) * 0);
  }

  .top-1 {
    top: calc(var(--spacing) * 1);
  }

  .top-2\.5 {
    top: calc(var(--spacing) * 2.5);
  }

  .top-4 {
    top: calc(var(--spacing) * 4);
  }

  .top-full {
    top: 100%;
  }

  .right-0 {
    right: calc(var(--spacing) * 0);
  }

  .right-2 {
    right: calc(var(--spacing) * 2);
  }

  .right-4 {
    right: calc(var(--spacing) * 4);
  }

  .bottom-2 {
    bottom: calc(var(--spacing) * 2);
  }

  .bottom-full {
    bottom: 100%;
  }

  .left-0 {
    left: calc(var(--spacing) * 0);
  }

  .left-1 {
    left: calc(var(--spacing) * 1);
  }

  .z-10 {
    z-index: 10;
  }

  .z-50 {
    z-index: 50;
  }

  .z-\[1000\] {
    z-index: 1000;
  }

  .z-\[10000\] {
    z-index: 10000;
  }

  .container {
    width: 100%;
  }

  @media (min-width: 40rem) {
    .container {
      max-width: 40rem;
    }
  }

  @media (min-width: 48rem) {
    .container {
      max-width: 48rem;
    }
  }

  @media (min-width: 64rem) {
    .container {
      max-width: 64rem;
    }
  }

  @media (min-width: 80rem) {
    .container {
      max-width: 80rem;
    }
  }

  @media (min-width: 96rem) {
    .container {
      max-width: 96rem;
    }
  }

  .m-4 {
    margin: calc(var(--spacing) * 4);
  }

  .mx-auto {
    margin-inline: auto;
  }

  .my-3 {
    margin-block: calc(var(--spacing) * 3);
  }

  .my-4 {
    margin-block: calc(var(--spacing) * 4);
  }

  .my-6 {
    margin-block: calc(var(--spacing) * 6);
  }

  .mt-1 {
    margin-top: calc(var(--spacing) * 1);
  }

  .mt-2 {
    margin-top: calc(var(--spacing) * 2);
  }

  .mt-3 {
    margin-top: calc(var(--spacing) * 3);
  }

  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }

  .mt-6 {
    margin-top: calc(var(--spacing) * 6);
  }

  .mt-8 {
    margin-top: calc(var(--spacing) * 8);
  }

  .mt-10 {
    margin-top: calc(var(--spacing) * 10);
  }

  .mt-12 {
    margin-top: calc(var(--spacing) * 12);
  }

  .mr-1 {
    margin-right: calc(var(--spacing) * 1);
  }

  .mr-2 {
    margin-right: calc(var(--spacing) * 2);
  }

  .mr-3 {
    margin-right: calc(var(--spacing) * 3);
  }

  .mb-1 {
    margin-bottom: calc(var(--spacing) * 1);
  }

  .mb-2 {
    margin-bottom: calc(var(--spacing) * 2);
  }

  .mb-3 {
    margin-bottom: calc(var(--spacing) * 3);
  }

  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }

  .mb-6 {
    margin-bottom: calc(var(--spacing) * 6);
  }

  .mb-8 {
    margin-bottom: calc(var(--spacing) * 8);
  }

  .ml-0 {
    margin-left: calc(var(--spacing) * 0);
  }

  .ml-1 {
    margin-left: calc(var(--spacing) * 1);
  }

  .ml-2 {
    margin-left: calc(var(--spacing) * 2);
  }

  .ml-3 {
    margin-left: calc(var(--spacing) * 3);
  }

  .ml-4 {
    margin-left: calc(var(--spacing) * 4);
  }

  .ml-8 {
    margin-left: calc(var(--spacing) * 8);
  }

  .box-border {
    box-sizing: border-box;
  }

  .line-clamp-2 {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
  }

  .line-clamp-3 {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
  }

  .block {
    display: block;
  }

  .contents {
    display: contents;
  }

  .flex {
    display: flex;
  }

  .flow-root {
    display: flow-root;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

  .inline {
    display: inline;
  }

  .inline-block {
    display: inline-block;
  }

  .inline-flex {
    display: inline-flex;
  }

  .list-item {
    display: list-item;
  }

  .table {
    display: table;
  }

  .table-caption {
    display: table-caption;
  }

  .table-cell {
    display: table-cell;
  }

  .table-row {
    display: table-row;
  }

  .table-row-group {
    display: table-row-group;
  }

  .h-0\.5 {
    height: calc(var(--spacing) * .5);
  }

  .h-1 {
    height: calc(var(--spacing) * 1);
  }

  .h-2 {
    height: calc(var(--spacing) * 2);
  }

  .h-3 {
    height: calc(var(--spacing) * 3);
  }

  .h-4 {
    height: calc(var(--spacing) * 4);
  }

  .h-5 {
    height: calc(var(--spacing) * 5);
  }

  .h-6 {
    height: calc(var(--spacing) * 6);
  }

  .h-7 {
    height: calc(var(--spacing) * 7);
  }

  .h-8 {
    height: calc(var(--spacing) * 8);
  }

  .h-10 {
    height: calc(var(--spacing) * 10);
  }

  .h-12 {
    height: calc(var(--spacing) * 12);
  }

  .h-16 {
    height: calc(var(--spacing) * 16);
  }

  .h-24 {
    height: calc(var(--spacing) * 24);
  }

  .h-80 {
    height: calc(var(--spacing) * 80);
  }

  .h-96 {
    height: calc(var(--spacing) * 96);
  }

  .h-\[30px\] {
    height: 30px;
  }

  .h-\[400px\] {
    height: 400px;
  }

  .h-\[600px\] {
    height: 600px;
  }

  .h-full {
    height: 100%;
  }

  .h-screen {
    height: 100vh;
  }

  .max-h-60 {
    max-height: calc(var(--spacing) * 60);
  }

  .max-h-96 {
    max-height: calc(var(--spacing) * 96);
  }

  .max-h-\[90vh\] {
    max-height: 90vh;
  }

  .min-h-96 {
    min-height: calc(var(--spacing) * 96);
  }

  .min-h-\[60px\] {
    min-height: 60px;
  }

  .min-h-\[100px\] {
    min-height: 100px;
  }

  .min-h-screen {
    min-height: 100vh;
  }

  .w-0 {
    width: calc(var(--spacing) * 0);
  }

  .w-3 {
    width: calc(var(--spacing) * 3);
  }

  .w-4 {
    width: calc(var(--spacing) * 4);
  }

  .w-5 {
    width: calc(var(--spacing) * 5);
  }

  .w-6 {
    width: calc(var(--spacing) * 6);
  }

  .w-7 {
    width: calc(var(--spacing) * 7);
  }

  .w-8 {
    width: calc(var(--spacing) * 8);
  }

  .w-10 {
    width: calc(var(--spacing) * 10);
  }

  .w-12 {
    width: calc(var(--spacing) * 12);
  }

  .w-16 {
    width: calc(var(--spacing) * 16);
  }

  .w-24 {
    width: calc(var(--spacing) * 24);
  }

  .w-48 {
    width: calc(var(--spacing) * 48);
  }

  .w-64 {
    width: calc(var(--spacing) * 64);
  }

  .w-80 {
    width: calc(var(--spacing) * 80);
  }

  .w-\[30px\] {
    width: 30px;
  }

  .w-\[480px\] {
    width: 480px;
  }

  .w-fit {
    width: fit-content;
  }

  .w-full {
    width: 100%;
  }

  .max-w-2xl {
    max-width: var(--container-2xl);
  }

  .max-w-3xl {
    max-width: var(--container-3xl);
  }

  .max-w-4xl {
    max-width: var(--container-4xl);
  }

  .max-w-5xl {
    max-width: var(--container-5xl);
  }

  .max-w-6xl {
    max-width: var(--container-6xl);
  }

  .max-w-7xl {
    max-width: var(--container-7xl);
  }

  .max-w-\[560px\] {
    max-width: 560px;
  }

  .max-w-full {
    max-width: 100%;
  }

  .max-w-lg {
    max-width: var(--container-lg);
  }

  .max-w-md {
    max-width: var(--container-md);
  }

  .max-w-none {
    max-width: none;
  }

  .max-w-sm {
    max-width: var(--container-sm);
  }

  .min-w-0 {
    min-width: calc(var(--spacing) * 0);
  }

  .min-w-\[220px\] {
    min-width: 220px;
  }

  .min-w-\[360px\] {
    min-width: 360px;
  }

  .min-w-full {
    min-width: 100%;
  }

  .flex-1 {
    flex: 1;
  }

  .flex-shrink-0, .shrink-0 {
    flex-shrink: 0;
  }

  .-translate-y-2 {
    --tw-translate-y: calc(var(--spacing) * -2);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .translate-y-2 {
    --tw-translate-y: calc(var(--spacing) * 2);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .scale-105 {
    --tw-scale-x: 105%;
    --tw-scale-y: 105%;
    --tw-scale-z: 105%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }

  .scale-110 {
    --tw-scale-x: 110%;
    --tw-scale-y: 110%;
    --tw-scale-z: 110%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }

  .-rotate-45 {
    rotate: -45deg;
  }

  .rotate-45 {
    rotate: 45deg;
  }

  .rotate-180 {
    rotate: 180deg;
  }

  .transform {
    transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
  }

  .animate-pulse {
    animation: var(--animate-pulse);
  }

  .animate-spin {
    animation: var(--animate-spin);
  }

  .cursor-default {
    cursor: default;
  }

  .cursor-grabbing {
    cursor: grabbing;
  }

  .cursor-move {
    cursor: move;
  }

  .cursor-not-allowed {
    cursor: not-allowed;
  }

  .cursor-pointer {
    cursor: pointer;
  }

  .resize {
    resize: both;
  }

  .resize-none {
    resize: none;
  }

  .resize-y {
    resize: vertical;
  }

  .list-inside {
    list-style-position: inside;
  }

  .list-decimal {
    list-style-type: decimal;
  }

  .list-disc {
    list-style-type: disc;
  }

  .list-none {
    list-style-type: none;
  }

  .appearance-none {
    appearance: none;
  }

  .break-inside-avoid-column {
    break-inside: avoid-column;
  }

  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .flex-col {
    flex-direction: column;
  }

  .flex-wrap {
    flex-wrap: wrap;
  }

  .items-center {
    align-items: center;
  }

  .items-start {
    align-items: flex-start;
  }

  .justify-between {
    justify-content: space-between;
  }

  .justify-center {
    justify-content: center;
  }

  .justify-end {
    justify-content: flex-end;
  }

  .gap-1 {
    gap: calc(var(--spacing) * 1);
  }

  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }

  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }

  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }

  .gap-5 {
    gap: calc(var(--spacing) * 5);
  }

  .gap-6 {
    gap: calc(var(--spacing) * 6);
  }

  .gap-8 {
    gap: calc(var(--spacing) * 8);
  }

  :where(.space-y-0 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 0) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 0) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-1 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-2 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-3 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-4 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-6 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-8 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-10 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 10) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 10) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-12 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 12) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 12) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.-space-x-2 > :not(:last-child)) {
    --tw-space-x-reverse: 0;
    margin-inline-start: calc(calc(var(--spacing) * -2) * var(--tw-space-x-reverse));
    margin-inline-end: calc(calc(var(--spacing) * -2) * calc(1 - var(--tw-space-x-reverse)));
  }

  :where(.space-x-2 > :not(:last-child)) {
    --tw-space-x-reverse: 0;
    margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
    margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
  }

  :where(.space-x-3 > :not(:last-child)) {
    --tw-space-x-reverse: 0;
    margin-inline-start: calc(calc(var(--spacing) * 3) * var(--tw-space-x-reverse));
    margin-inline-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-x-reverse)));
  }

  :where(.space-x-4 > :not(:last-child)) {
    --tw-space-x-reverse: 0;
    margin-inline-start: calc(calc(var(--spacing) * 4) * var(--tw-space-x-reverse));
    margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse)));
  }

  :where(.divide-y > :not(:last-child)) {
    --tw-divide-y-reverse: 0;
    border-bottom-style: var(--tw-border-style);
    border-top-style: var(--tw-border-style);
    border-top-width: calc(1px * var(--tw-divide-y-reverse));
    border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  }

  :where(.divide-gray-100 > :not(:last-child)) {
    border-color: var(--color-gray-100);
  }

  :where(.divide-gray-200 > :not(:last-child)) {
    border-color: var(--color-gray-200);
  }

  :where(.divide-slate-100 > :not(:last-child)) {
    border-color: var(--color-slate-100);
  }

  :where(.divide-slate-200 > :not(:last-child)) {
    border-color: var(--color-slate-200);
  }

  .truncate {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .overflow-auto {
    overflow: auto;
  }

  .overflow-hidden {
    overflow: hidden;
  }

  .overflow-x-auto {
    overflow-x: auto;
  }

  .overflow-x-hidden {
    overflow-x: hidden;
  }

  .overflow-y-auto {
    overflow-y: auto;
  }

  .rounded {
    border-radius: .25rem;
  }

  .rounded-full {
    border-radius: 3.40282e38px;
  }

  .rounded-lg {
    border-radius: var(--radius-lg);
  }

  .rounded-md {
    border-radius: var(--radius-md);
  }

  .rounded-none {
    border-radius: 0;
  }

  .rounded-xl {
    border-radius: var(--radius-xl);
  }

  .rounded-t-lg {
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
  }

  .rounded-l-lg {
    border-top-left-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
  }

  .rounded-r-lg {
    border-top-right-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
  }

  .rounded-b-lg {
    border-bottom-right-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
  }

  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .border-0 {
    border-style: var(--tw-border-style);
    border-width: 0;
  }

  .border-2 {
    border-style: var(--tw-border-style);
    border-width: 2px;
  }

  .border-3 {
    border-style: var(--tw-border-style);
    border-width: 3px;
  }

  .border-t {
    border-top-style: var(--tw-border-style);
    border-top-width: 1px;
  }

  .border-t-0 {
    border-top-style: var(--tw-border-style);
    border-top-width: 0;
  }

  .border-t-2 {
    border-top-style: var(--tw-border-style);
    border-top-width: 2px;
  }

  .border-r {
    border-right-style: var(--tw-border-style);
    border-right-width: 1px;
  }

  .border-b {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }

  .border-b-2 {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 2px;
  }

  .border-b-3 {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 3px;
  }

  .border-b-4 {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 4px;
  }

  .border-l-0 {
    border-left-style: var(--tw-border-style);
    border-left-width: 0;
  }

  .border-l-2 {
    border-left-style: var(--tw-border-style);
    border-left-width: 2px;
  }

  .border-l-4 {
    border-left-style: var(--tw-border-style);
    border-left-width: 4px;
  }

  .border-dashed {
    --tw-border-style: dashed;
    border-style: dashed;
  }

  .border-none {
    --tw-border-style: none;
    border-style: none;
  }

  .border-\[\#2c241b\] {
    border-color: #2c241b;
  }

  .border-\[\#d4c49c\] {
    border-color: #d4c49c;
  }

  .border-\[\#ebd1b5\] {
    border-color: #ebd1b5;
  }

  .border-black {
    border-color: var(--color-black);
  }

  .border-blue-200 {
    border-color: var(--color-blue-200);
  }

  .border-blue-300 {
    border-color: var(--color-blue-300);
  }

  .border-blue-400 {
    border-color: var(--color-blue-400);
  }

  .border-blue-500 {
    border-color: var(--color-blue-500);
  }

  .border-blue-600 {
    border-color: var(--color-blue-600);
  }

  .border-blue-900 {
    border-color: var(--color-blue-900);
  }

  .border-gray-100 {
    border-color: var(--color-gray-100);
  }

  .border-gray-200 {
    border-color: var(--color-gray-200);
  }

  .border-gray-300 {
    border-color: var(--color-gray-300);
  }

  .border-gray-400 {
    border-color: var(--color-gray-400);
  }

  .border-gray-500 {
    border-color: var(--color-gray-500);
  }

  .border-gray-600 {
    border-color: var(--color-gray-600);
  }

  .border-gray-700 {
    border-color: var(--color-gray-700);
  }

  .border-gray-800 {
    border-color: var(--color-gray-800);
  }

  .border-gray-900 {
    border-color: var(--color-gray-900);
  }

  .border-green-200 {
    border-color: var(--color-green-200);
  }

  .border-green-300 {
    border-color: var(--color-green-300);
  }

  .border-green-600 {
    border-color: var(--color-green-600);
  }

  .border-indigo-600 {
    border-color: var(--color-indigo-600);
  }

  .border-orange-500 {
    border-color: var(--color-orange-500);
  }

  .border-red-200 {
    border-color: var(--color-red-200);
  }

  .border-red-300 {
    border-color: var(--color-red-300);
  }

  .border-red-400 {
    border-color: var(--color-red-400);
  }

  .border-red-500 {
    border-color: var(--color-red-500);
  }

  .border-slate-200 {
    border-color: var(--color-slate-200);
  }

  .border-slate-300 {
    border-color: var(--color-slate-300);
  }

  .border-transparent {
    border-color: #0000;
  }

  .border-white {
    border-color: var(--color-white);
  }

  .border-yellow-100 {
    border-color: var(--color-yellow-100);
  }

  .border-yellow-200 {
    border-color: var(--color-yellow-200);
  }

  .border-yellow-300 {
    border-color: var(--color-yellow-300);
  }

  .border-t-transparent {
    border-top-color: #0000;
  }

  .bg-\[\#2c241b\] {
    background-color: #2c241b;
  }

  .bg-\[\#1877F2\], .bg-\[\#1877f2\] {
    background-color: #1877f2;
  }

  .bg-\[\#f4e4bc\] {
    background-color: #f4e4bc;
  }

  .bg-\[\#fbeee2\] {
    background-color: #fbeee2;
  }

  .bg-\[\#fdf7e3\] {
    background-color: #fdf7e3;
  }

  .bg-\[\#fffaf3\] {
    background-color: #fffaf3;
  }

  .bg-black {
    background-color: var(--color-black);
  }

  .bg-black\/50 {
    background-color: #00000080;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-black\/50 {
      background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
    }
  }

  .bg-blue-50 {
    background-color: var(--color-blue-50);
  }

  .bg-blue-100 {
    background-color: var(--color-blue-100);
  }

  .bg-blue-200 {
    background-color: var(--color-blue-200);
  }

  .bg-blue-500 {
    background-color: var(--color-blue-500);
  }

  .bg-blue-600 {
    background-color: var(--color-blue-600);
  }

  .bg-blue-900 {
    background-color: var(--color-blue-900);
  }

  .bg-gray-50 {
    background-color: var(--color-gray-50);
  }

  .bg-gray-100 {
    background-color: var(--color-gray-100);
  }

  .bg-gray-200 {
    background-color: var(--color-gray-200);
  }

  .bg-gray-300 {
    background-color: var(--color-gray-300);
  }

  .bg-gray-400 {
    background-color: var(--color-gray-400);
  }

  .bg-gray-500 {
    background-color: var(--color-gray-500);
  }

  .bg-gray-600 {
    background-color: var(--color-gray-600);
  }

  .bg-gray-700 {
    background-color: var(--color-gray-700);
  }

  .bg-gray-800 {
    background-color: var(--color-gray-800);
  }

  .bg-gray-900 {
    background-color: var(--color-gray-900);
  }

  .bg-green-50 {
    background-color: var(--color-green-50);
  }

  .bg-green-100 {
    background-color: var(--color-green-100);
  }

  .bg-green-200 {
    background-color: var(--color-green-200);
  }

  .bg-green-500 {
    background-color: var(--color-green-500);
  }

  .bg-green-600 {
    background-color: var(--color-green-600);
  }

  .bg-green-700 {
    background-color: var(--color-green-700);
  }

  .bg-indigo-50 {
    background-color: var(--color-indigo-50);
  }

  .bg-indigo-100 {
    background-color: var(--color-indigo-100);
  }

  .bg-indigo-600 {
    background-color: var(--color-indigo-600);
  }

  .bg-orange-100 {
    background-color: var(--color-orange-100);
  }

  .bg-orange-500 {
    background-color: var(--color-orange-500);
  }

  .bg-orange-600 {
    background-color: var(--color-orange-600);
  }

  .bg-pink-100 {
    background-color: var(--color-pink-100);
  }

  .bg-pink-600 {
    background-color: var(--color-pink-600);
  }

  .bg-purple-100 {
    background-color: var(--color-purple-100);
  }

  .bg-purple-500 {
    background-color: var(--color-purple-500);
  }

  .bg-purple-600 {
    background-color: var(--color-purple-600);
  }

  .bg-red-50 {
    background-color: var(--color-red-50);
  }

  .bg-red-100 {
    background-color: var(--color-red-100);
  }

  .bg-red-200 {
    background-color: var(--color-red-200);
  }

  .bg-red-600 {
    background-color: var(--color-red-600);
  }

  .bg-teal-600 {
    background-color: var(--color-teal-600);
  }

  .bg-transparent {
    background-color: #0000;
  }

  .bg-white {
    background-color: var(--color-white);
  }

  .bg-white\/70 {
    background-color: #ffffffb3;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-white\/70 {
      background-color: color-mix(in oklab, var(--color-white) 70%, transparent);
    }
  }

  .bg-white\/80 {
    background-color: #fffc;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-white\/80 {
      background-color: color-mix(in oklab, var(--color-white) 80%, transparent);
    }
  }

  .bg-white\/85 {
    background-color: #ffffffd9;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-white\/85 {
      background-color: color-mix(in oklab, var(--color-white) 85%, transparent);
    }
  }

  .bg-white\/90 {
    background-color: #ffffffe6;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-white\/90 {
      background-color: color-mix(in oklab, var(--color-white) 90%, transparent);
    }
  }

  .bg-yellow-50 {
    background-color: var(--color-yellow-50);
  }

  .bg-yellow-100 {
    background-color: var(--color-yellow-100);
  }

  .bg-yellow-500 {
    background-color: var(--color-yellow-500);
  }

  .bg-yellow-600 {
    background-color: var(--color-yellow-600);
  }

  .object-cover {
    object-fit: cover;
  }

  .p-0 {
    padding: calc(var(--spacing) * 0);
  }

  .p-1 {
    padding: calc(var(--spacing) * 1);
  }

  .p-2 {
    padding: calc(var(--spacing) * 2);
  }

  .p-3 {
    padding: calc(var(--spacing) * 3);
  }

  .p-4 {
    padding: calc(var(--spacing) * 4);
  }

  .p-5 {
    padding: calc(var(--spacing) * 5);
  }

  .p-6 {
    padding: calc(var(--spacing) * 6);
  }

  .p-8 {
    padding: calc(var(--spacing) * 8);
  }

  .p-12 {
    padding: calc(var(--spacing) * 12);
  }

  .px-2 {
    padding-inline: calc(var(--spacing) * 2);
  }

  .px-3 {
    padding-inline: calc(var(--spacing) * 3);
  }

  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }

  .px-5 {
    padding-inline: calc(var(--spacing) * 5);
  }

  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }

  .py-0 {
    padding-block: calc(var(--spacing) * 0);
  }

  .py-0\.5 {
    padding-block: calc(var(--spacing) * .5);
  }

  .py-1 {
    padding-block: calc(var(--spacing) * 1);
  }

  .py-1\.5 {
    padding-block: calc(var(--spacing) * 1.5);
  }

  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }

  .py-2\.5 {
    padding-block: calc(var(--spacing) * 2.5);
  }

  .py-3 {
    padding-block: calc(var(--spacing) * 3);
  }

  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }

  .py-6 {
    padding-block: calc(var(--spacing) * 6);
  }

  .py-8 {
    padding-block: calc(var(--spacing) * 8);
  }

  .py-10 {
    padding-block: calc(var(--spacing) * 10);
  }

  .py-12 {
    padding-block: calc(var(--spacing) * 12);
  }

  .py-20 {
    padding-block: calc(var(--spacing) * 20);
  }

  .pt-2 {
    padding-top: calc(var(--spacing) * 2);
  }

  .pt-3 {
    padding-top: calc(var(--spacing) * 3);
  }

  .pt-4 {
    padding-top: calc(var(--spacing) * 4);
  }

  .pt-6 {
    padding-top: calc(var(--spacing) * 6);
  }

  .pt-8 {
    padding-top: calc(var(--spacing) * 8);
  }

  .pt-10 {
    padding-top: calc(var(--spacing) * 10);
  }

  .pr-3 {
    padding-right: calc(var(--spacing) * 3);
  }

  .pb-2 {
    padding-bottom: calc(var(--spacing) * 2);
  }

  .pb-4 {
    padding-bottom: calc(var(--spacing) * 4);
  }

  .pb-6 {
    padding-bottom: calc(var(--spacing) * 6);
  }

  .pl-3 {
    padding-left: calc(var(--spacing) * 3);
  }

  .pl-4 {
    padding-left: calc(var(--spacing) * 4);
  }

  .text-center {
    text-align: center;
  }

  .text-justify {
    text-align: justify;
  }

  .text-left {
    text-align: left;
  }

  .text-right {
    text-align: right;
  }

  .font-\[\'Cinzel\'\] {
    font-family: Cinzel;
  }

  .font-\[\'EB_Garamond\'\] {
    font-family: EB Garamond;
  }

  .font-\[\'Playfair_Display\'\] {
    font-family: Playfair Display;
  }

  .font-mono {
    font-family: var(--font-mono);
  }

  .font-sans {
    font-family: var(--font-sans);
  }

  .font-serif {
    font-family: var(--font-serif);
  }

  .text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }

  .text-3xl {
    font-size: var(--text-3xl);
    line-height: var(--tw-leading, var(--text-3xl--line-height));
  }

  .text-4xl {
    font-size: var(--text-4xl);
    line-height: var(--tw-leading, var(--text-4xl--line-height));
  }

  .text-5xl {
    font-size: var(--text-5xl);
    line-height: var(--tw-leading, var(--text-5xl--line-height));
  }

  .text-6xl {
    font-size: var(--text-6xl);
    line-height: var(--tw-leading, var(--text-6xl--line-height));
  }

  .text-base {
    font-size: var(--text-base);
    line-height: var(--tw-leading, var(--text-base--line-height));
  }

  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }

  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }

  .text-xl {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
  }

  .text-xs {
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
  }

  .leading-none {
    --tw-leading: 1;
    line-height: 1;
  }

  .leading-relaxed {
    --tw-leading: var(--leading-relaxed);
    line-height: var(--leading-relaxed);
  }

  .leading-snug {
    --tw-leading: var(--leading-snug);
    line-height: var(--leading-snug);
  }

  .leading-tight {
    --tw-leading: var(--leading-tight);
    line-height: var(--leading-tight);
  }

  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }

  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }

  .font-normal {
    --tw-font-weight: var(--font-weight-normal);
    font-weight: var(--font-weight-normal);
  }

  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }

  .tracking-\[0\.2em\] {
    --tw-tracking: .2em;
    letter-spacing: .2em;
  }

  .tracking-\[0\.3em\] {
    --tw-tracking: .3em;
    letter-spacing: .3em;
  }

  .tracking-\[0\.4em\] {
    --tw-tracking: .4em;
    letter-spacing: .4em;
  }

  .tracking-tighter {
    --tw-tracking: var(--tracking-tighter);
    letter-spacing: var(--tracking-tighter);
  }

  .tracking-wide {
    --tw-tracking: var(--tracking-wide);
    letter-spacing: var(--tracking-wide);
  }

  .tracking-widest {
    --tw-tracking: var(--tracking-widest);
    letter-spacing: var(--tracking-widest);
  }

  .break-words {
    overflow-wrap: break-word;
  }

  .whitespace-normal {
    white-space: normal;
  }

  .whitespace-nowrap {
    white-space: nowrap;
  }

  .whitespace-pre-line {
    white-space: pre-line;
  }

  .whitespace-pre-wrap {
    white-space: pre-wrap;
  }

  .text-\[\#0A66C2\] {
    color: #0a66c2;
  }

  .text-\[\#2c241b\] {
    color: #2c241b;
  }

  .text-\[\#4b3c2f\] {
    color: #4b3c2f;
  }

  .text-\[\#8f6d3f\] {
    color: #8f6d3f;
  }

  .text-\[\#1877F2\] {
    color: #1877f2;
  }

  .text-\[\#f4e4bc\] {
    color: #f4e4bc;
  }

  .text-amber-600 {
    color: var(--color-amber-600);
  }

  .text-black {
    color: var(--color-black);
  }

  .text-blue-500 {
    color: var(--color-blue-500);
  }

  .text-blue-600 {
    color: var(--color-blue-600);
  }

  .text-blue-700 {
    color: var(--color-blue-700);
  }

  .text-blue-800 {
    color: var(--color-blue-800);
  }

  .text-blue-900 {
    color: var(--color-blue-900);
  }

  .text-gray-50 {
    color: var(--color-gray-50);
  }

  .text-gray-100 {
    color: var(--color-gray-100);
  }

  .text-gray-200 {
    color: var(--color-gray-200);
  }

  .text-gray-300 {
    color: var(--color-gray-300);
  }

  .text-gray-400 {
    color: var(--color-gray-400);
  }

  .text-gray-500 {
    color: var(--color-gray-500);
  }

  .text-gray-600 {
    color: var(--color-gray-600);
  }

  .text-gray-700 {
    color: var(--color-gray-700);
  }

  .text-gray-800 {
    color: var(--color-gray-800);
  }

  .text-gray-900 {
    color: var(--color-gray-900);
  }

  .text-green-500 {
    color: var(--color-green-500);
  }

  .text-green-600 {
    color: var(--color-green-600);
  }

  .text-green-700 {
    color: var(--color-green-700);
  }

  .text-green-800 {
    color: var(--color-green-800);
  }

  .text-indigo-300 {
    color: var(--color-indigo-300);
  }

  .text-indigo-400 {
    color: var(--color-indigo-400);
  }

  .text-indigo-600 {
    color: var(--color-indigo-600);
  }

  .text-indigo-700 {
    color: var(--color-indigo-700);
  }

  .text-indigo-800 {
    color: var(--color-indigo-800);
  }

  .text-orange-400 {
    color: var(--color-orange-400);
  }

  .text-orange-500 {
    color: var(--color-orange-500);
  }

  .text-orange-600 {
    color: var(--color-orange-600);
  }

  .text-orange-700 {
    color: var(--color-orange-700);
  }

  .text-pink-800 {
    color: var(--color-pink-800);
  }

  .text-purple-600 {
    color: var(--color-purple-600);
  }

  .text-purple-800 {
    color: var(--color-purple-800);
  }

  .text-red-500 {
    color: var(--color-red-500);
  }

  .text-red-600 {
    color: var(--color-red-600);
  }

  .text-red-700 {
    color: var(--color-red-700);
  }

  .text-red-800 {
    color: var(--color-red-800);
  }

  .text-slate-500 {
    color: var(--color-slate-500);
  }

  .text-slate-600 {
    color: var(--color-slate-600);
  }

  .text-slate-700 {
    color: var(--color-slate-700);
  }

  .text-slate-800 {
    color: var(--color-slate-800);
  }

  .text-slate-900 {
    color: var(--color-slate-900);
  }

  .text-white {
    color: var(--color-white);
  }

  .text-yellow-500 {
    color: var(--color-yellow-500);
  }

  .text-yellow-700 {
    color: var(--color-yellow-700);
  }

  .text-yellow-800 {
    color: var(--color-yellow-800);
  }

  .text-yellow-900 {
    color: var(--color-yellow-900);
  }

  .capitalize {
    text-transform: capitalize;
  }

  .lowercase {
    text-transform: lowercase;
  }

  .uppercase {
    text-transform: uppercase;
  }

  .italic {
    font-style: italic;
  }

  .not-italic {
    font-style: normal;
  }

  .ordinal {
    --tw-ordinal: ordinal;
    font-variant-numeric: var(--tw-ordinal, ) var(--tw-slashed-zero, ) var(--tw-numeric-figure, ) var(--tw-numeric-spacing, ) var(--tw-numeric-fraction, );
  }

  .no-underline {
    text-decoration-line: none;
  }

  .underline {
    text-decoration-line: underline;
  }

  .antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .opacity-0 {
    opacity: 0;
  }

  .opacity-25 {
    opacity: .25;
  }

  .opacity-50 {
    opacity: .5;
  }

  .opacity-75 {
    opacity: .75;
  }

  .opacity-90 {
    opacity: .9;
  }

  .opacity-100 {
    opacity: 1;
  }

  .shadow {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-2xl {
    --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, #00000040);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-\[0px_4px_0px_0px_\#F0F0F0\] {
    --tw-shadow: 0px 4px 0px 0px var(--tw-shadow-color, #f0f0f0);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-\[4px_4px_0px_0px_\#000000\] {
    --tw-shadow: 4px 4px 0px 0px var(--tw-shadow-color, #000);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-\[4px_4px_0px_0px_\#121212\] {
    --tw-shadow: 4px 4px 0px 0px var(--tw-shadow-color, #121212);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-\[4px_4px_0px_0px_\#F0F0F0\] {
    --tw-shadow: 4px 4px 0px 0px var(--tw-shadow-color, #f0f0f0);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-\[8px_8px_0px_0px_\#F0F0F0\] {
    --tw-shadow: 8px 8px 0px 0px var(--tw-shadow-color, #f0f0f0);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-inner {
    --tw-shadow: inset 0 2px 4px 0 var(--tw-shadow-color, #0000000d);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-lg {
    --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a), 0 4px 6px -4px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-md {
    --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a), 0 2px 4px -2px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-none {
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-sm {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-xl {
    --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, #0000001a), 0 8px 10px -6px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }

  .drop-shadow-xl {
    --tw-drop-shadow-size: drop-shadow(0 9px 7px var(--tw-drop-shadow-color, #0000001a));
    --tw-drop-shadow: drop-shadow(var(--drop-shadow-xl));
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .filter {
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .backdrop-blur-sm {
    --tw-backdrop-blur: blur(var(--blur-sm));
    -webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
    backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
  }

  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-all {
    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-colors {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-opacity {
    transition-property: opacity;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-transform {
    transition-property: transform, translate, scale, rotate;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .duration-300 {
    --tw-duration: .3s;
    transition-duration: .3s;
  }

  .ease-in-out {
    --tw-ease: var(--ease-in-out);
    transition-timing-function: var(--ease-in-out);
  }

  .outline-none {
    --tw-outline-style: none;
    outline-style: none;
  }

  .select-none {
    -webkit-user-select: none;
    user-select: none;
  }

  @media (hover: hover) {
    .group-hover\:opacity-100:is(:where(.group):hover *) {
      opacity: 1;
    }
  }

  .last\:border-0:last-child {
    border-style: var(--tw-border-style);
    border-width: 0;
  }

  .last\:border-b-0:last-child {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 0;
  }

  .last\:border-none:last-child {
    --tw-border-style: none;
    border-style: none;
  }

  @media (hover: hover) {
    .hover\:translate-x-\[2px\]:hover {
      --tw-translate-x: 2px;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }

    .hover\:translate-x-\[4px\]:hover {
      --tw-translate-x: 4px;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }

    .hover\:translate-y-\[-4px\]:hover {
      --tw-translate-y: -4px;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }

    .hover\:translate-y-\[2px\]:hover {
      --tw-translate-y: 2px;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }

    .hover\:translate-y-\[4px\]:hover {
      --tw-translate-y: 4px;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }

    .hover\:scale-\[1\.02\]:hover {
      scale: 1.02;
    }

    .hover\:border-gray-200:hover {
      border-color: var(--color-gray-200);
    }

    .hover\:border-gray-400:hover {
      border-color: var(--color-gray-400);
    }

    .hover\:border-indigo-500:hover {
      border-color: var(--color-indigo-500);
    }

    .hover\:border-orange-500:hover {
      border-color: var(--color-orange-500);
    }

    .hover\:bg-\[\#2c241b\]:hover {
      background-color: #2c241b;
    }

    .hover\:bg-\[\#166fe5\]:hover {
      background-color: #166fe5;
    }

    .hover\:bg-\[\#f4e4bc\]:hover {
      background-color: #f4e4bc;
    }

    .hover\:bg-blue-50:hover {
      background-color: var(--color-blue-50);
    }

    .hover\:bg-blue-200:hover {
      background-color: var(--color-blue-200);
    }

    .hover\:bg-blue-700:hover {
      background-color: var(--color-blue-700);
    }

    .hover\:bg-blue-800:hover {
      background-color: var(--color-blue-800);
    }

    .hover\:bg-gray-50:hover {
      background-color: var(--color-gray-50);
    }

    .hover\:bg-gray-100:hover {
      background-color: var(--color-gray-100);
    }

    .hover\:bg-gray-200:hover {
      background-color: var(--color-gray-200);
    }

    .hover\:bg-gray-300:hover {
      background-color: var(--color-gray-300);
    }

    .hover\:bg-gray-400:hover {
      background-color: var(--color-gray-400);
    }

    .hover\:bg-gray-500:hover {
      background-color: var(--color-gray-500);
    }

    .hover\:bg-gray-600:hover {
      background-color: var(--color-gray-600);
    }

    .hover\:bg-gray-700:hover {
      background-color: var(--color-gray-700);
    }

    .hover\:bg-gray-900:hover {
      background-color: var(--color-gray-900);
    }

    .hover\:bg-green-200:hover {
      background-color: var(--color-green-200);
    }

    .hover\:bg-green-500:hover {
      background-color: var(--color-green-500);
    }

    .hover\:bg-green-700:hover {
      background-color: var(--color-green-700);
    }

    .hover\:bg-indigo-700:hover {
      background-color: var(--color-indigo-700);
    }

    .hover\:bg-orange-50:hover {
      background-color: var(--color-orange-50);
    }

    .hover\:bg-orange-600:hover {
      background-color: var(--color-orange-600);
    }

    .hover\:bg-orange-700:hover {
      background-color: var(--color-orange-700);
    }

    .hover\:bg-purple-700:hover {
      background-color: var(--color-purple-700);
    }

    .hover\:bg-red-200:hover {
      background-color: var(--color-red-200);
    }

    .hover\:bg-red-500:hover {
      background-color: var(--color-red-500);
    }

    .hover\:bg-red-700:hover {
      background-color: var(--color-red-700);
    }

    .hover\:bg-slate-50:hover {
      background-color: var(--color-slate-50);
    }

    .hover\:bg-slate-100:hover {
      background-color: var(--color-slate-100);
    }

    .hover\:bg-teal-700:hover {
      background-color: var(--color-teal-700);
    }

    .hover\:bg-yellow-400:hover {
      background-color: var(--color-yellow-400);
    }

    .hover\:bg-yellow-500:hover {
      background-color: var(--color-yellow-500);
    }

    .hover\:text-\[\#2c241b\]:hover {
      color: #2c241b;
    }

    .hover\:text-\[\#f4e4bc\]:hover {
      color: #f4e4bc;
    }

    .hover\:text-blue-700:hover {
      color: var(--color-blue-700);
    }

    .hover\:text-blue-800:hover {
      color: var(--color-blue-800);
    }

    .hover\:text-gray-50:hover {
      color: var(--color-gray-50);
    }

    .hover\:text-gray-600:hover {
      color: var(--color-gray-600);
    }

    .hover\:text-gray-700:hover {
      color: var(--color-gray-700);
    }

    .hover\:text-gray-900:hover {
      color: var(--color-gray-900);
    }

    .hover\:text-orange-300:hover {
      color: var(--color-orange-300);
    }

    .hover\:text-orange-600:hover {
      color: var(--color-orange-600);
    }

    .hover\:text-orange-700:hover {
      color: var(--color-orange-700);
    }

    .hover\:text-red-500:hover {
      color: var(--color-red-500);
    }

    .hover\:text-red-800:hover {
      color: var(--color-red-800);
    }

    .hover\:no-underline:hover {
      text-decoration-line: none;
    }

    .hover\:underline:hover {
      text-decoration-line: underline;
    }

    .hover\:opacity-80:hover {
      opacity: .8;
    }

    .hover\:opacity-90:hover {
      opacity: .9;
    }

    .hover\:shadow-\[2px_2px_0px_0px_\#000000\]:hover {
      --tw-shadow: 2px 2px 0px 0px var(--tw-shadow-color, #000);
      box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }

    .hover\:shadow-md:hover {
      --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a), 0 2px 4px -2px var(--tw-shadow-color, #0000001a);
      box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }

    .hover\:shadow-none:hover {
      --tw-shadow: 0 0 #0000;
      box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }

    .hover\:brightness-90:hover {
      --tw-brightness: brightness(90%);
      filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
    }
  }

  .focus\:w-64:focus {
    width: calc(var(--spacing) * 64);
  }

  .focus\:border-blue-500:focus {
    border-color: var(--color-blue-500);
  }

  .focus\:border-indigo-500:focus {
    border-color: var(--color-indigo-500);
  }

  .focus\:border-orange-500:focus {
    border-color: var(--color-orange-500);
  }

  .focus\:border-transparent:focus {
    border-color: #0000;
  }

  .focus\:shadow-\[4px_4px_0px_0px_\#2D58B8\]:focus {
    --tw-shadow: 4px 4px 0px 0px var(--tw-shadow-color, #2d58b8);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus\:ring-0:focus {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus\:ring-1:focus {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus\:ring-2:focus {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus\:ring-amber-500:focus {
    --tw-ring-color: var(--color-amber-500);
  }

  .focus\:ring-blue-500:focus {
    --tw-ring-color: var(--color-blue-500);
  }

  .focus\:ring-gray-400:focus {
    --tw-ring-color: var(--color-gray-400);
  }

  .focus\:ring-gray-500:focus {
    --tw-ring-color: var(--color-gray-500);
  }

  .focus\:ring-green-500:focus {
    --tw-ring-color: var(--color-green-500);
  }

  .focus\:ring-indigo-500:focus {
    --tw-ring-color: var(--color-indigo-500);
  }

  .focus\:ring-orange-500:focus {
    --tw-ring-color: var(--color-orange-500);
  }

  .focus\:ring-purple-500:focus {
    --tw-ring-color: var(--color-purple-500);
  }

  .focus\:ring-red-400:focus {
    --tw-ring-color: var(--color-red-400);
  }

  .focus\:ring-offset-1:focus {
    --tw-ring-offset-width: 1px;
    --tw-ring-offset-shadow: var(--tw-ring-inset, ) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  }

  .focus\:ring-offset-2:focus {
    --tw-ring-offset-width: 2px;
    --tw-ring-offset-shadow: var(--tw-ring-inset, ) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  }

  .focus\:outline-none:focus {
    --tw-outline-style: none;
    outline-style: none;
  }

  .disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed;
  }

  .disabled\:bg-blue-300:disabled {
    background-color: var(--color-blue-300);
  }

  .disabled\:bg-gray-50:disabled {
    background-color: var(--color-gray-50);
  }

  .disabled\:bg-gray-100:disabled {
    background-color: var(--color-gray-100);
  }

  .disabled\:bg-gray-300:disabled {
    background-color: var(--color-gray-300);
  }

  .disabled\:bg-gray-400:disabled {
    background-color: var(--color-gray-400);
  }

  .disabled\:bg-green-300:disabled {
    background-color: var(--color-green-300);
  }

  .disabled\:bg-purple-300:disabled {
    background-color: var(--color-purple-300);
  }

  .disabled\:text-gray-400:disabled {
    color: var(--color-gray-400);
  }

  .disabled\:opacity-50:disabled {
    opacity: .5;
  }

  .disabled\:opacity-60:disabled {
    opacity: .6;
  }

  @media (min-width: 40rem) {
    .sm\:inline {
      display: inline;
    }

    .sm\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm\:text-sm {
      font-size: var(--text-sm);
      line-height: var(--tw-leading, var(--text-sm--line-height));
    }
  }

  @media (min-width: 48rem) {
    .md\:col-span-1 {
      grid-column: span 1 / span 1;
    }

    .md\:col-span-2 {
      grid-column: span 2 / span 2;
    }

    .md\:col-span-3 {
      grid-column: span 3 / span 3;
    }

    .md\:flex {
      display: flex;
    }

    .md\:hidden {
      display: none;
    }

    .md\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:grid-cols-5 {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .md\:flex-row {
      flex-direction: row;
    }

    .md\:items-center {
      align-items: center;
    }

    .md\:items-end {
      align-items: flex-end;
    }

    .md\:items-start {
      align-items: flex-start;
    }

    .md\:justify-between {
      justify-content: space-between;
    }

    .md\:gap-6 {
      gap: calc(var(--spacing) * 6);
    }

    .md\:p-8 {
      padding: calc(var(--spacing) * 8);
    }

    .md\:px-4 {
      padding-inline: calc(var(--spacing) * 4);
    }

    .md\:text-4xl {
      font-size: var(--text-4xl);
      line-height: var(--tw-leading, var(--text-4xl--line-height));
    }
  }

  @media (min-width: 64rem) {
    .lg\:col-span-1 {
      grid-column: span 1 / span 1;
    }

    .lg\:col-span-2 {
      grid-column: span 2 / span 2;
    }

    .lg\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
}
@property --tw-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-z {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-scale-x {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-scale-y {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-scale-z {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false
}
@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-space-x-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-divide-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-leading {
  syntax: "*";
  inherits: false
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false
}
@property --tw-tracking {
  syntax: "*";
  inherits: false
}
@property --tw-ordinal {
  syntax: "*";
  inherits: false
}
@property --tw-slashed-zero {
  syntax: "*";
  inherits: false
}
@property --tw-numeric-figure {
  syntax: "*";
  inherits: false
}
@property --tw-numeric-spacing {
  syntax: "*";
  inherits: false
}
@property --tw-numeric-fraction {
  syntax: "*";
  inherits: false
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-blur {
  syntax: "*";
  inherits: false
}
@property --tw-brightness {
  syntax: "*";
  inherits: false
}
@property --tw-contrast {
  syntax: "*";
  inherits: false
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false
}
@property --tw-invert {
  syntax: "*";
  inherits: false
}
@property --tw-opacity {
  syntax: "*";
  inherits: false
}
@property --tw-saturate {
  syntax: "*";
  inherits: false
}
@property --tw-sepia {
  syntax: "*";
  inherits: false
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false
}
@property --tw-duration {
  syntax: "*";
  inherits: false
}
@property --tw-ease {
  syntax: "*";
  inherits: false
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  50% {
    opacity: .5;
  }
}
