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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #e0e0e0;
  min-height: 100vh;
  padding: 20px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid #4a4a6a;
}

header {
  text-align: center;
  border-bottom: 2px solid #6a5acd;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

header h1 {
  color: #ffd700;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 10px;
}

.game-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 0.9rem;
  color: #b0b0c0;
}

.game-info span {
  padding: 5px 15px;
  background: rgba(106, 90, 205, 0.2);
  border-radius: 5px;
}

.main-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  margin-bottom: 20px;
}

.story-container {
  background: rgba(30, 30, 50, 0.8);
  border-radius: 10px;
  padding: 20px;
  height: 500px;
  overflow-y: auto;
  border: 1px solid #4a4a6a;
}

.story-message {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 8px;
  animation: fadeIn 0.3s ease-in;
}

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

.dm-message {
  background: rgba(106, 90, 205, 0.15);
  border-left: 4px solid #6a5acd;
}

.player-message {
  background: rgba(50, 100, 150, 0.15);
  border-left: 4px solid #5a8cb0;
}

.message-label {
  font-weight: bold;
  font-size: 0.85rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dm-message .message-label {
  color: #9b87d9;
}

.player-message .message-label {
  color: #7eaad9;
}

.message-content {
  line-height: 1.7;
  font-size: 1.05rem;
  color: #e8e8e8;
}

.player-stats {
  background: rgba(30, 30, 50, 0.8);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #4a4a6a;
  height: 500px;
  overflow-y: auto;
}

.player-stats h3 {
  color: #ffd700;
  margin-bottom: 15px;
  text-align: center;
  border-bottom: 1px solid #6a5acd;
  padding-bottom: 10px;
}

#stats-content {
  font-size: 0.9rem;
}

.stat-line {
  margin-bottom: 10px;
  padding: 8px;
  background: rgba(106, 90, 205, 0.1);
  border-radius: 5px;
}

.stat-label {
  font-weight: bold;
  color: #9b87d9;
}

.stat-value {
  color: #e8e8e8;
}

/* Mobile Stats Toggle */
.stats-toggle {
  display: none;
  position: fixed;
  top: 80px;
  right: 20px;
  background: #6a5acd;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000;
  font-size: 1.2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.stats-toggle:hover {
  background: #5a4abd;
}

.stamina-bar, .hunger-bar {
  width: 100%;
  height: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 5px;
}

.stamina-fill {
  height: 100%;
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  transition: width 0.3s ease;
}

.stamina-fill.low-hp {
  background: linear-gradient(90deg, #f44336, #d32f2f);
  animation: pulse-red 1.5s ease-in-out infinite;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hunger-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff9800, #ff5722);
  transition: width 0.3s ease;
}

.no-character {
  text-align: center;
  color: #888;
  padding: 20px;
}

.input-section {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

#player-input {
  flex: 1;
  padding: 15px;
  font-size: 1rem;
  background: rgba(30, 30, 50, 0.9);
  border: 2px solid #6a5acd;
  border-radius: 8px;
  color: #e0e0e0;
  font-family: 'Georgia', serif;
}

#player-input:focus {
  outline: none;
  border-color: #9b87d9;
  box-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
}

#send-button {
  padding: 15px 30px;
  font-size: 1rem;
  background: linear-gradient(135deg, #6a5acd, #9b87d9);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

#send-button:hover {
  background: linear-gradient(135deg, #7b6bdd, #ab97e9);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(106, 90, 205, 0.4);
}

#send-button:active {
  transform: translateY(0);
}

#send-button:disabled {
  background: #555;
  cursor: not-allowed;
  opacity: 0.5;
}

.controls {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.controls button {
  padding: 10px 20px;
  background: rgba(106, 90, 205, 0.3);
  border: 1px solid #6a5acd;
  border-radius: 5px;
  color: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.controls button:hover {
  background: rgba(106, 90, 205, 0.5);
  transform: translateY(-2px);
}

.controls button.disabled {
  opacity: 0.5;
  background: rgba(80, 80, 100, 0.3);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background: #1e1e32;
  margin: 5% auto;
  padding: 20px;
  border: 2px solid #6a5acd;
  border-radius: 10px;
  width: 95%;
  max-width: 1200px;
  max-height: 85vh;
  overflow: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  color: #e0e0e0;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  /* .map-zoom-controls sits at the same top-right corner with z-index: 10 and
     otherwise wins every click here, since a floated element with no z-index
     of its own loses to any positioned, stacked sibling. */
  position: relative;
  z-index: 20;
}

.close:hover,
.close:focus {
  color: #fff;
}

.close-seed {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-seed:hover,
.close-seed:focus {
  color: #fff;
}

#modal-title {
  color: #ffd700;
  margin-bottom: 15px;
}

#modal-body {
  padding: 15px;
  border-radius: 5px;
}

.modal-body-text {
  background: rgba(0, 0, 0, 0.5);
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.4;
}

.modal-body-html {
  background: transparent;
}

/* Scrollbar Styling */
.story-container::-webkit-scrollbar,
.player-stats::-webkit-scrollbar,
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.story-container::-webkit-scrollbar-track,
.player-stats::-webkit-scrollbar-track,
.modal-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.story-container::-webkit-scrollbar-thumb,
.player-stats::-webkit-scrollbar-thumb,
.modal-content::-webkit-scrollbar-thumb {
  background: #6a5acd;
  border-radius: 10px;
}

.story-container::-webkit-scrollbar-thumb:hover,
.player-stats::-webkit-scrollbar-thumb:hover,
.modal-content::-webkit-scrollbar-thumb:hover {
  background: #7b6bdd;
}

/* Loading indicator */
.loading {
  text-align: center;
  color: #9b87d9;
  font-style: italic;
  padding: 10px;
}

/* Map Styles */
.map-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.map-wrapper {
  position: relative;
  width: 100%;
  background: #f5f0e8;
  border: 3px solid #5d4a3a;
  border-radius: 8px;
  margin: 15px 0;
  padding: 25px 5px 5px 25px;
}

.map-scroll {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  position: relative;
}

.map-svg {
  display: block;
  transition: transform 0.3s ease;
}

.map-zoom-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  display: flex;
  gap: 5px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.zoom-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  background: #6a5acd;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.zoom-btn:hover {
  background: #7b6bdd;
  transform: scale(1.1);
}

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

.grid-numbers {
  position: absolute;
  color: #5d4a3a;
  font-size: 10px;
  font-family: monospace;
  font-weight: bold;
  transform-origin: top left;
  transition: transform 0.3s ease;
}

.grid-top {
  top: 5px;
  left: 25px;
  right: 5px;
  height: 15px;
}

.grid-left {
  left: 5px;
  top: 25px;
  bottom: 5px;
  width: 20px;
}

.grid-numbers span {
  position: absolute;
  white-space: nowrap;
}

.grid-top span {
  transform: translateX(-50%);
}

.grid-left span {
  transform: translateY(-50%);
  text-align: right;
  width: 20px;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(232, 215, 184, 0.6);
  border-radius: 4px;
  border: 2px solid #a89968;
  box-shadow: inset 0 0 10px rgba(139, 115, 85, 0.1);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: #5d4a3a;
  font-family: 'Georgia', serif;
  font-weight: 500;
}

.map-icon {
  font-size: 1.2rem;
}

.map-grid {
  display: inline-block;
  background: linear-gradient(135deg, #f4e8d0 0%, #e8d7b8 100%);
  border: 3px solid #8b7355;
  border-radius: 4px;
  padding: 10px;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.5),
    inset 0 0 60px rgba(139, 115, 85, 0.1);
  margin-bottom: 20px;
  position: relative;
  filter: contrast(1.1) sepia(0.15);
}

.map-svg {
  display: block;
  background: linear-gradient(135deg, #f4e8d0 0%, #e8d7b8 100%);
  border: 3px solid #8b7355;
  border-radius: 4px;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.5),
    inset 0 0 60px rgba(139, 115, 85, 0.1);
  filter: contrast(1.05) sepia(0.1);
}

.map-row {
  display: flex;
  height: 24px;
}

.map-cell {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-family: 'Georgia', serif;
}

.map-cell:hover {
  transform: scale(1.15);
  z-index: 10;
  filter: brightness(1.2) contrast(1.1);
  box-shadow: 0 0 8px rgba(139, 115, 85, 0.8);
  border: 1px solid #8b7355;
}

.map-cell:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(244, 232, 208, 0.95);
  color: #5d4a3a;
  padding: 4px 8px;
  border-radius: 3px;
  white-space: nowrap;
  font-size: 11px;
  pointer-events: none;
  z-index: 100;
  border: 1px solid #8b7355;
  margin-bottom: 2px;
  font-family: 'Georgia', serif;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Terrain backgrounds - hand-drawn map style */
.plains-cell { 
  background: #c8d4a8;
  box-shadow: inset 0 0 3px rgba(100, 120, 80, 0.3);
}
.forest-cell { 
  background: #6b8e5f;
  box-shadow: inset 0 0 3px rgba(40, 60, 30, 0.4);
}
.mountain-cell { 
  background: #9b9b9b;
  box-shadow: inset 0 0 3px rgba(60, 60, 60, 0.5);
}
.lake-cell { 
  background: #7eb3d4;
  box-shadow: inset 0 0 3px rgba(60, 100, 140, 0.4);
}
.river-cell { 
  background: #88c3e8;
  box-shadow: inset 0 0 2px rgba(70, 110, 150, 0.4);
}
.road-cell { 
  background: #c9b896;
  box-shadow: inset 0 0 2px rgba(120, 100, 70, 0.3);
}
.swamp-cell { 
  background: #8b9b7d;
  box-shadow: inset 0 0 3px rgba(60, 80, 50, 0.4);
}
.desert-cell { 
  background: #e8d5a8;
  box-shadow: inset 0 0 3px rgba(200, 180, 130, 0.3);
}
.hills-cell { 
  background: #a8b88f;
  box-shadow: inset 0 0 3px rgba(90, 110, 70, 0.3);
}
.bridge-cell { 
  background: #a0876d;
  box-shadow: inset 0 0 3px rgba(100, 80, 60, 0.4);
}

/* Important location highlights - hand-drawn style */
.important-location {
  animation: pulse 2s infinite;
  box-shadow: 
    0 0 8px rgba(139, 69, 19, 0.6),
    inset 0 0 8px rgba(255, 215, 0, 0.2);
  filter: brightness(1.1);
  border: 2px dashed #8b4513;
  border-radius: 3px;
}

.town-cell {
  background: #d4a574;
  box-shadow: inset 0 0 5px rgba(100, 70, 40, 0.5);
  font-weight: bold;
  color: #5d4a3a;
}

.dungeon-cell {
  background: #8b6f6f;
  box-shadow: inset 0 0 5px rgba(60, 40, 40, 0.6);
  font-weight: bold;
  color: #3a2a2a;
}

.player-cell {
  background: #c8a882;
  box-shadow: 
    0 0 10px rgba(200, 168, 130, 0.8),
    inset 0 0 5px rgba(150, 120, 80, 0.4);
  font-weight: bold;
  color: #4a3a2a;
  border: 2px solid #8b7355;
  border-radius: 50%;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 
      0 0 8px rgba(139, 69, 19, 0.6),
      inset 0 0 8px rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow: 
      0 0 12px rgba(139, 69, 19, 0.8),
      inset 0 0 12px rgba(255, 215, 0, 0.3);
  }
}

/* Location details section */
.map-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.location-section {
  background: rgba(232, 215, 184, 0.4);
  border: 2px solid #a89968;
  border-radius: 4px;
  padding: 12px;
  box-shadow: inset 0 0 10px rgba(139, 115, 85, 0.05);
}

.location-section h4 {
  color: #5d4a3a;
  margin-bottom: 10px;
  font-size: 1rem;
  border-bottom: 2px solid #a89968;
  padding-bottom: 5px;
  font-family: 'Georgia', serif;
  font-weight: bold;
}

.location-section ul {
  list-style: none;
  padding: 0;
}

.location-section li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(168, 153, 104, 0.3);
  font-size: 0.85rem;
  line-height: 1.4;
  color: #5d4a3a;
  font-family: 'Georgia', serif;
}

.location-section li:last-child {
  border-bottom: none;
}

.location-section li strong {
  color: #6b5638;
  font-weight: bold;
}

.location-section li em {
  color: #8b7355;
  font-size: 0.8rem;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;
  }
  
  .player-stats {
    height: auto;
    max-height: 300px;
  }
  
  .map-cell {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }
}

/*
 * Mobile: one screen, nothing to manage.
 *
 * The desktop layout is a control panel — sidebar stats, six toolbar buttons,
 * modals. On a phone that's clutter competing with a text box: if the player
 * wants to know their HP or inventory, they ask the DM, the same as any other
 * question. Everything here either fills the one thing that matters (the
 * story) or disappears. Map is the one exception — panning a rendered map by
 * typing coordinates is worse than a real map view, so it stays as an icon.
 */
@media (max-width: 768px) {
  html, body {
    height: 100%;
    overflow: hidden; /* the page itself never scrolls — only the log does */
  }

  body {
    padding: 0;
  }

  .container {
    max-width: none;
    height: 100dvh; /* dvh over vh: excludes the mobile browser chrome */
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }

  header {
    flex: 0 0 auto;
    padding: 10px 14px;
    margin-bottom: 0;
    border-bottom: 1px solid #4a4a6a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  header h1 {
    font-size: 1.1rem;
    margin: 0;
    white-space: nowrap;
  }

  /* Time/weather/phase chips: ambient noise once the screen is this small. */
  .game-info {
    display: none;
  }

  .main-content {
    flex: 1 1 auto;
    min-height: 0; /* the flexbox trick that makes an inner scroller work */
    display: flex;
    margin: 0;
  }

  .story-container {
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 14px;
  }

  /* The sidebar and its toggle are the old escape hatch for stats — gone,
     because asking the DM replaces both. */
  .player-stats,
  .stats-toggle {
    display: none;
  }

  .input-section {
    flex: 0 0 auto;
    flex-direction: row;
    gap: 8px;
    margin: 0;
    padding: 10px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid #4a4a6a;
    background: rgba(0, 0, 0, 0.35);
  }

  #player-input {
    font-size: 16px; /* 16px stops iOS Safari zooming in on focus */
    padding: 12px 14px;
  }

  #send-button {
    padding: 12px 20px;
    flex: 0 0 auto;
  }

  /* One button survives: everything else is either a debug tool, redundant
     with asking the DM, or a desktop-only convenience. */
  .controls {
    flex: 0 0 auto;
    justify-content: flex-end;
    padding: 6px 10px;
    margin: 0;
  }

  .controls button {
    /* !important: the seed-map button gets an inline display:inline-block
       from app.js after auth loads, which otherwise outranks a stylesheet
       rule regardless of specificity. */
    display: none !important;
  }

  .controls #map-button {
    display: block !important;
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .map-scroll {
    height: 65vh;
  }

  .map-legend {
    font-size: 0.75rem;
    gap: 8px;
  }

  .map-locations {
    grid-template-columns: 1fr;
    font-size: 0.85rem;
  }

  .modal-content {
    width: 98%;
    margin: 2% auto;
    padding: 15px;
    max-height: 95vh;
  }

  .zoom-btn {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}

/* Save Slots Modal Styles */
.save-slots {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.save-slots p {
  margin-bottom: 10px;
  color: #b0b0c0;
  font-size: 1rem;
}

.save-slot {
  padding: 15px;
  background: rgba(50, 50, 70, 0.6);
  border: 2px solid #5d4a3a;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  color: #e0e0e0;
  transition: all 0.3s ease;
}

.save-slot:hover:not(:disabled) {
  background: rgba(70, 70, 90, 0.8);
  border-color: #8b7355;
  transform: translateX(5px);
}

.save-slot.occupied {
  border-color: #d4af37;
  background: rgba(60, 60, 80, 0.7);
}

.save-slot.occupied:hover {
  background: rgba(80, 80, 100, 0.9);
  border-color: #e5c347;
}

.save-slot.empty {
  border-color: #4a4a6a;
  opacity: 0.7;
}

.save-slot:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.save-slot strong {
  color: #d4af37;
  display: block;
  margin-bottom: 5px;
}

.save-slot em {
  color: #808090;
}

/* Travel UI Styles */
.travel-ui {
  position: fixed;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 30, 50, 0.95);
  border: 2px solid #6a5acd;
  border-radius: 12px;
  padding: 15px 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.travel-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.travel-status {
  color: #ffd700;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.travel-countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6a5acd 0%, #483d8b 100%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  border: 3px solid #ffd700;
  box-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(106, 90, 205, 0.8);
  }
}

.travel-stop-btn {
  background: rgba(200, 50, 50, 0.8);
  border: 2px solid #c83232;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.travel-stop-btn:hover {
  background: rgba(220, 70, 70, 1);
  border-color: #ff4444;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(200, 50, 50, 0.6);
}

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

/* Mobile responsiveness for travel UI */
@media (max-width: 768px) {
  .travel-ui {
    bottom: 100px;
    padding: 12px 20px;
  }
  
  .travel-content {
    gap: 15px;
  }
  
  .travel-status {
    font-size: 0.9rem;
  }
  
  .travel-countdown {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }
  
  .travel-stop-btn {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}
