/* Global app styles
 * Keep this file focused on layout and light theming.
 * Prefer utility classes and clear naming over cleverness.
 */

:root {
  --bg: #0b1120;
  --bg-elevated: #020617;
  --accent: #22c55e;
  --accent-soft: rgba(34, 197, 94, 0.12);
  --accent-strong: #16a34a;
  --text: #e5e7eb;
  --text-soft: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --danger: #f97373;
  --danger-soft: rgba(248, 113, 113, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #111827, #020617 50%, #000);
  color: var(--text);
}

#app-root {
  min-height: 100vh;
}

.app-loading {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.app-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.app-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.dev-mode-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--accent-strong);
  font-weight: 500;
}

.dev-mode-button {
  padding: 0.25rem 0.75rem;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.5);
  border-radius: 0.4rem;
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dev-mode-button:hover {
  background: rgba(34, 197, 94, 0.3);
  transform: translateY(-1px);
}

.warning-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
}

.warning-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.warning-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text);
}

.warning-text strong {
  color: var(--danger);
  font-weight: 600;
}

@media (max-width: 600px) {
  .warning-banner {
    padding: 0.875rem 1rem;
    gap: 0.6rem;
  }

  .warning-icon {
    font-size: 1.1rem;
  }

  .warning-text {
    font-size: 0.8rem;
  }
}

.app-header-title {
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 650;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.badge {
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  border: 1px solid var(--border-subtle);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.badge-accent {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-color: rgba(34, 197, 94, 0.4);
}

.app-header-subtitle {
  color: var(--text-soft);
  font-size: 0.9rem;
  max-width: 40rem;
}

.app-main {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 1.25rem;
}

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

.panel {
  background: radial-gradient(circle at top left, #020617, #020617 40%, #000);
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  padding: 1.15rem 1.1rem 1.15rem;
  box-shadow:
    0 18px 55px rgba(15, 23, 42, 0.85),
    0 0 0 0.5px rgba(148, 163, 184, 0.26),
    0 0 30px rgba(96, 165, 250, 0.06);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.panel-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
}

.panel-body {
  font-size: 0.87rem;
  color: var(--text-soft);
}

.panel-body-empty {
  padding: 0.75rem 0.25rem 0.25rem;
}

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

.muted-text {
  color: var(--text-soft);
}

.small-caps {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.8);
  font-size: 0.7rem;
  color: var(--text-soft);
}

.pill-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.pill-danger {
  border-color: rgba(248, 113, 113, 0.45);
  background: var(--danger-soft);
  color: var(--danger);
}

/* Utility layout helpers */
.stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stack-sm {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Form-like layout for the planner controls (future use) */
.field-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.field-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
}

.field-helper {
  font-size: 0.75rem;
  color: var(--text-soft);
}

/* Inputs & buttons for the wizard */
.input,
.select {
  appearance: none;
  border-radius: 0.75rem;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  padding: 0.45rem 0.7rem;
  font-size: 0.8rem;
  outline: none;
  min-width: 0;
}

.input:focus,
.select:focus {
  border-color: rgba(34, 197, 94, 0.7);
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.55),
    0 0 0 6px rgba(34, 197, 94, 0.1);
}

.button-row {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.btn {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-primary {
  border-color: rgba(34, 197, 94, 0.7);
  background: linear-gradient(to right, #16a34a, #22c55e);
  color: #ecfdf5;
}

.btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.wizard-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.wizard-steps::-webkit-scrollbar {
  height: 4px;
}

.wizard-steps::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.3);
  border-radius: 2px;
}

.wizard-steps::-webkit-scrollbar-thumb {
  background: var(--border-subtle);
  border-radius: 2px;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
  position: relative;
}

.wizard-step-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(15, 23, 42, 0.7);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.wizard-step-label {
  font-size: 0.7rem;
  color: var(--text-soft);
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
  word-break: break-word;
}

.wizard-step-active .wizard-step-badge {
  border-color: var(--accent);
  background: var(--accent);
  color: #ecfdf5;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.wizard-step-active .wizard-step-label {
  color: var(--accent-strong);
  font-weight: 500;
}

.wizard-step-done .wizard-step-badge {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.15);
  color: var(--accent-strong);
}

.wizard-step-connector {
  flex: 1;
  min-width: 1rem;
  height: 2px;
  margin-top: 1rem;
  border-top: 2px dashed var(--border-subtle);
  align-self: flex-start;
}

.wizard-step-active ~ .wizard-step-connector,
.wizard-step-done ~ .wizard-step-connector {
  border-top-color: rgba(34, 197, 94, 0.4);
}

@media (max-width: 900px) {
  .wizard-steps {
    gap: 0.3rem;
  }

  .wizard-step-badge {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.75rem;
  }

  .wizard-step-label {
    font-size: 0.65rem;
  }

  .wizard-step-connector {
    min-width: 0.5rem;
  }
}

@media (max-width: 600px) {
  .wizard-steps {
    gap: 0.2rem;
  }

  .wizard-step-badge {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.7rem;
  }

  .wizard-step-label {
    font-size: 0.6rem;
  }
}

.error-text {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--danger);
}

.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.itinerary-day {
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.5rem 0.65rem;
  background: rgba(15, 23, 42, 0.9);
}

.itinerary-day-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.25rem;
  gap: 0.5rem;
}

.itinerary-day-title {
  font-size: 0.8rem;
  font-weight: 600;
}

.itinerary-day-meta {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.summary-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.summary-chip {
  font-size: 0.74rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.85);
}

/* Footer styles */
.app-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.app-footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.app-footer-copyright {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.app-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.app-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.6);
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.app-footer-link:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.app-footer-icon {
  font-size: 0.9rem;
}

.app-footer-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Carousel for step 3 */
.carousel-container {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  min-height: 400px;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.2s ease;
  z-index: 10;
  align-self: center;
}

.carousel-arrow:hover:not(:disabled) {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
  transform: scale(1.1);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-width: 0;
}

.carousel-content {
  display: flex;
  height: 100%;
}

.combination-preview {
  flex-shrink: 0;
  border-radius: 0.9rem;
  border: 2px solid rgba(148, 163, 184, 0.35);
  padding: 1rem;
  background: rgba(15, 23, 42, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.combination-preview:hover {
  border-color: rgba(34, 197, 94, 0.6);
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.combination-preview-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.4);
}

.combination-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.combination-preview-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.combination-preview-stats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.carousel-indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.carousel-indicator:hover {
  background: rgba(148, 163, 184, 0.4);
  transform: scale(1.2);
}

.carousel-indicator-active {
  background: var(--accent);
  border-color: var(--accent);
  width: 1.5rem;
  border-radius: 999px;
}

.carousel-counter {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 600px) {
  .app-footer-links {
    gap: 0.6rem;
  }

  .app-footer-link {
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
  }

  .carousel-arrow {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }

  .combination-preview {
    padding: 0.75rem;
  }

  .combination-preview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .carousel-indicators {
    gap: 0.4rem;
  }
}

/* Configuration step styles */
.huts-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding: 0;
}

.hut-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  position: relative;
}

.hut-checkbox:hover {
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.8);
  transform: translateY(-1px);
}

.hut-checkbox-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.3);
}

.hut-checkbox-selected .hut-checkbox-label {
  color: var(--accent-strong);
  font-weight: 500;
}

.hut-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.hut-checkbox-label {
  font-size: 0.8rem;
  color: var(--text-soft);
  transition: color 0.2s ease;
  pointer-events: none;
}

.hut-checkbox::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.3rem;
  border: 1.5px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.9);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.hut-checkbox-selected::before {
  background: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23ecfdf5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .huts-checkboxes {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.6rem;
  }

  .hut-checkbox {
    padding: 0.45rem 0.65rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  .huts-checkboxes {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* Enhanced Hut Exclusion Styles */
.hut-exclusion-dates {
  padding: 0.75rem 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 0.5rem;
  margin: 0.75rem 0;
  font-size: 0.9rem;
  text-align: center;
}

.hut-exclusion-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
}

.hut-exclusion-card:hover {
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.8);
}

.hut-exclusion-card-included {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.08);
}

.hut-exclusion-card .hut-checkbox {
  width: 100%;
  margin: 0;
}

.hut-booking-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 0.5rem;
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.hut-booking-link:hover {
  background: rgba(34, 197, 94, 0.25);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.hut-booking-link span:first-child {
  font-size: 0.9rem;
}

.hut-booking-note {
  font-size: 0.7rem;
  color: var(--text-soft);
  font-style: italic;
  margin-top: 0.25rem;
  padding-left: 1.5rem;
}

/* Hut Availability Styles */
.hut-availability-section {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}

.hut-availability-label {
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.hut-availability-calendar-btn {
  width: 100%;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}

.hut-availability-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hut-availability-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.hut-availability-modal-content {
  position: relative;
  z-index: 1001;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  padding: 1.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.hut-availability-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.hut-availability-modal-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.hut-availability-modal-close {
  background: transparent;
  border: none;
  color: var(--text-soft);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  transition: all 0.2s ease;
}

.hut-availability-modal-close:hover {
  background: rgba(148, 163, 184, 0.2);
  color: var(--text);
}

.hut-availability-calendar {
  margin-top: 0;
}

.hut-availability-dates-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  min-height: 1.5rem;
}

.hut-availability-date-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.6rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 0.4rem;
  font-size: 0.75rem;
  color: var(--accent-strong);
}

.hut-availability-remove-btn {
  background: transparent;
  border: none;
  color: var(--accent-strong);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.hut-availability-remove-btn:hover {
  background: rgba(34, 197, 94, 0.2);
  transform: scale(1.1);
}

.hut-availability-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.hut-availability-calendar-weekday {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-soft);
  padding: 0.4rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hut-availability-calendar-cell {
  aspect-ratio: 1;
  min-width: 2.5rem;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  margin: 0;
}

.hut-availability-calendar-cell:hover {
  background: rgba(148, 163, 184, 0.2);
  border-color: rgba(148, 163, 184, 0.4);
  transform: scale(1.05);
}

.hut-availability-calendar-cell-selected {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.5);
  color: var(--accent-strong);
  font-weight: 600;
}

.hut-availability-calendar-cell-selected:hover {
  background: rgba(34, 197, 94, 0.3);
  border-color: rgba(34, 197, 94, 0.6);
}

.hut-availability-calendar-cell-empty {
  background: transparent;
  border: none;
  cursor: default;
  pointer-events: none;
}

.hut-availability-summary {
  font-size: 0.75rem;
  color: var(--text-soft);
  text-align: center;
  padding: 0.5rem;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 0.4rem;
}

.hut-availability-summary-empty {
  font-style: italic;
}

.hut-availability-no-dates {
  font-size: 0.7rem;
  color: var(--text-soft);
  font-style: italic;
  text-align: center;
  padding: 0.75rem;
}

@media (max-width: 600px) {
  .hut-exclusion-card {
    padding: 0.6rem;
  }
}

/* Hiking Plan View Styles */
.hiking-plan-view {
  width: 100%;
  padding: 2rem 1rem;
}

.hiking-plan-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hiking-plan-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hiking-plan-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.plan-summary {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.plan-summary-dates {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  text-align: center;
}

.plan-summary-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.plan-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.plan-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.plan-stat-label {
  font-size: 0.85rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Plan Tabs */
.plan-tabs-wrapper {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  overflow: hidden;
}

.plan-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
  scrollbar-width: none;
}

.plan-tabs-nav::-webkit-scrollbar {
  display: none;
}

.plan-tab-button {
  flex: 1;
  min-width: 120px;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.plan-tab-button:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.8);
}

.plan-tab-button.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: rgba(15, 23, 42, 0.9);
}

.plan-tabs-content {
  padding: 2rem;
  min-height: 400px;
}

.plan-tab-content {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plan-section-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1.5rem 0;
}

.plan-itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-day-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.2s ease;
}

.plan-day-card:hover {
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.95);
}

.plan-day-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.plan-day-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.plan-day-meta {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.plan-day-route {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  border-left: 2px solid var(--accent-soft);
}

.plan-day-hut {
  font-size: 0.9rem;
  color: var(--accent-strong);
  font-weight: 500;
}

.plan-placeholder {
  background: rgba(15, 23, 42, 0.4);
  border: 1px dashed var(--border-subtle);
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  text-align: center;
}

.plan-placeholder p {
  margin: 0 0 1rem 0;
  color: var(--text);
  font-size: 1.1rem;
}

.plan-placeholder ul {
  text-align: left;
  display: inline-block;
  margin: 1rem 0 0 0;
  padding-left: 1.5rem;
  color: var(--text-soft);
}

.plan-placeholder li {
  margin: 0.5rem 0;
}

@media (max-width: 900px) {
  .hiking-plan-view {
    padding: 1rem 0.5rem;
  }

  .hiking-plan-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hiking-plan-title {
    font-size: 1.5rem;
  }

  .plan-summary {
    padding: 1.5rem;
  }

  .plan-summary-stats {
    gap: 2rem;
  }

  .plan-stat-value {
    font-size: 2rem;
  }

  .plan-tabs-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .plan-tab-button {
    min-width: 100px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .plan-tabs-content {
    padding: 1.5rem;
  }
}

/* Hut Information Styles */
.hut-info-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.hut-info-section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.hut-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.hut-basic-info {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hut-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-soft);
}

.hut-section-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.hut-section-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hut-time-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text);
}

.hut-time-label {
  color: var(--text-soft);
}

.hut-time-value {
  font-weight: 600;
  color: var(--accent-strong);
}

.hut-facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.5rem;
}

.hut-facility-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 0.5rem;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.hut-facility-item.available {
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--text);
}

.hut-facility-item.unavailable {
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--text-soft);
  opacity: 0.6;
}

.hut-facility-icon {
  font-weight: 700;
  width: 1rem;
  text-align: center;
}

.hut-facility-item.available .hut-facility-icon {
  color: var(--accent);
}

.hut-facility-item.unavailable .hut-facility-icon {
  color: var(--text-soft);
}

.hut-facility-label {
  flex: 1;
}

.hut-meals-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hut-meal-item {
  padding: 0.4rem 0.6rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
}

.hut-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hut-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 0.5rem;
  color: var(--accent-strong);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  width: fit-content;
}

.hut-contact-link:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.hut-booking-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 0.75rem;
  color: #ecfdf5;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
  justify-content: center;
}

.hut-booking-button:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.hut-booking-note {
  padding: 0.75rem 1rem;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
  text-align: center;
}

.hut-notes {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
}

.hut-notes-icon {
  flex-shrink: 0;
  font-size: 1rem;
}

.hut-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-style: italic;
}

/* Commuting Tab Styles */
.commuting-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.commuting-section {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.commuting-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.commuting-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.commuting-method-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 0.5rem;
  padding: 1rem;
  transition: all 0.2s ease;
}

.commuting-method-card:hover {
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.95);
}

.commuting-method-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-strong);
  margin-bottom: 0.75rem;
}

.commuting-method-details {
  margin: 0;
  padding-left: 1.5rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}

.commuting-method-details li {
  margin: 0.4rem 0;
}

.commuting-tips {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}

.commuting-tips ul {
  margin: 0;
  padding-left: 1.5rem;
}

.commuting-tips li {
  margin: 0.5rem 0;
}

.commuting-tips strong {
  color: var(--accent-strong);
  font-weight: 600;
}

/* Points of Interest Styles */
.poi-info-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.poi-info-section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.poi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.poi-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.poi-type {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 0.5rem;
  color: var(--accent-strong);
  font-weight: 500;
}

.poi-description {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.poi-detour-card {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  margin: 0.75rem 0;
}

.poi-detour-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.poi-detour-icon {
  font-size: 1.1rem;
}

.poi-detour-title {
  font-weight: 600;
  color: var(--accent-strong);
  font-size: 0.95rem;
}

.poi-detour-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.poi-detour-time {
  color: var(--text-soft);
}

.poi-detour-difficulty {
  color: var(--accent-strong);
  font-weight: 500;
}

.poi-detour-description {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
}

.poi-best-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
  margin: 0.75rem 0;
}

.poi-best-time-icon {
  font-size: 1rem;
}

.poi-tips-section {
  margin: 0.75rem 0;
}

.poi-section-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.poi-tips-list {
  margin: 0;
  padding-left: 1.5rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}

.poi-tips-list li {
  margin: 0.4rem 0;
}

.poi-historical {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 0.5rem;
  margin: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
}

.poi-historical-icon {
  flex-shrink: 0;
  font-size: 1rem;
}

.poi-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-style: italic;
  text-align: center;
  padding: 1rem;
}

/* Navigation Tab Styles */
.navigation-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.navigation-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 0.75rem;
  color: #ecfdf5;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.navigation-action-btn:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.navigation-section {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.navigation-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.time-estimates-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.time-estimate-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 0.5rem;
  padding: 1rem;
  transition: all 0.2s ease;
}

.time-estimate-card:hover {
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.95);
}

.time-estimate-header {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.time-estimate-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.time-estimate-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.time-estimate-meta {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.elevation-chart-container {
  margin-top: 1rem;
}

.elevation-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  height: 200px;
  padding: 1rem 0;
  border-bottom: 2px solid var(--border-subtle);
  overflow-x: auto;
}

.elevation-chart-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 80px;
  flex: 1;
}

.elevation-chart-label {
  font-size: 0.75rem;
  color: var(--text-soft);
  font-weight: 500;
  text-align: center;
}

.elevation-chart-bar-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.elevation-chart-bar {
  transition: all 0.2s ease;
}

.elevation-chart-bar-ascent {
  width: 60%;
  background: linear-gradient(to top, var(--accent), var(--accent-strong));
  border-radius: 0.25rem 0.25rem 0 0;
  min-height: 10px;
  position: relative;
}

.elevation-chart-bar-ascent:hover {
  opacity: 0.8;
  transform: scaleY(1.05);
}

.elevation-chart-bar-distance {
  position: absolute;
  bottom: 0;
  height: 4px;
  background: rgba(34, 197, 94, 0.4);
  border-radius: 2px;
  left: 50%;
  transform: translateX(-50%);
}

.elevation-chart-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  color: var(--text-soft);
  margin-top: 0.5rem;
}

.elevation-chart-info-item {
  text-align: center;
}

.map-placeholder {
  background: rgba(15, 23, 42, 0.4);
  border: 1px dashed var(--border-subtle);
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  text-align: center;
}

.map-placeholder p {
  margin: 0 0 1rem 0;
  color: var(--text);
  font-size: 1rem;
}

.map-placeholder p:first-child {
  font-size: 1.1rem;
}

/* Preparation Tab Styles */
.preparation-section {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.preparation-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.packing-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.5rem;
}

.packing-item-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  color: var(--text);
}

.packing-item-card:hover {
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.95);
  transform: translateX(2px);
}

.packing-item-card.packing-item-checked {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  opacity: 0.7;
}

.packing-item-checkbox {
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--accent);
}

.packing-item-checked .packing-item-checkbox {
  color: var(--accent-strong);
}

.packing-item-text {
  flex: 1;
}

.essential-gear-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.essential-gear-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.essential-gear-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
}

.essential-gear-critical {
  border-left: 3px solid var(--danger);
}

.essential-gear-recommended {
  border-left: 3px solid var(--accent);
}

.essential-gear-icon {
  flex-shrink: 0;
  font-size: 0.9rem;
}

.preparation-list {
  margin: 0;
  padding-left: 1.5rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}

.preparation-list li {
  margin: 0.5rem 0;
}

.preparation-day-info {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 600px) {
  .plan-summary-stats {
    gap: 1.5rem;
  }

  .plan-stat-value {
    font-size: 1.75rem;
  }

  .plan-day-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hut-facilities-grid {
    grid-template-columns: 1fr;
  }

  .hut-contact-link {
    width: 100%;
  }

  .commuting-section {
    padding: 1rem;
  }

  .commuting-sections {
    gap: 1.5rem;
  }

  .poi-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .navigation-section {
    padding: 1rem;
  }

  .preparation-section {
    padding: 1rem;
  }

  .elevation-chart-bars {
    height: 150px;
    gap: 0.5rem;
  }

  .elevation-chart-day {
    min-width: 60px;
  }

  .time-estimate-value {
    font-size: 1.25rem;
  }

  .hut-availability-calendar-cell {
    min-width: 2rem;
    min-height: 2rem;
    font-size: 0.75rem;
  }

  .hut-availability-calendar-weekday {
    font-size: 0.65rem;
    padding: 0.3rem 0;
  }

  .hut-availability-modal {
    padding: 0.5rem;
  }

  .hut-availability-modal-content {
    padding: 1rem;
    max-height: 95vh;
  }

  .hut-availability-modal-header h3 {
    font-size: 1rem;
  }
}
