body { 
  margin: 0; 
  padding: 0; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#map { 
  position: absolute; 
  top: 0; 
  bottom: 0; 
  width: 100%; 
  /* Prevent iOS Safari bounce effect */
  overscroll-behavior: none;
}

/* 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.5);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  color: #333;
}

.modal-body {
  padding: 20px;
}

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

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}

/* Layer Management Styles */
.layer-item {
  padding: 8px 15px;
  border-bottom: 1px solid #eee;
  background-color: #f9f9f9;
  cursor: pointer;
}

.layer-item:last-child {
  border-bottom: none;
}

.layer-item:hover {
  background-color: #e9ecef;
}

.layer-item.expanded {
  background-color: #e3f2fd;
}

.layer-checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  font-size: 14px;
  user-select: none;
}

.layer-checkbox-container input[type="checkbox"] {
  margin: 0;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.layer-checkbox-container .layer-name {
  margin: 0;
  font-family: monospace;
  color: #333;
  font-size: 13px;
}

.series-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.series-count {
  background: #007bff;
  color: white;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: normal;
}

/* Timeline Controls */
#timeline-controls {
  border-top: 2px solid #007bff;
  padding: 15px;
  background-color: #f8f9fa;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.timeline-header h4 {
  margin: 0;
  color: #333;
  font-size: 14px;
}

#timeline-info {
  font-size: 12px;
  color: #666;
  font-weight: bold;
}

.timeline-slider-container {
  margin-bottom: 10px;
}

#timeline-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #ddd;
  outline: none;
  -webkit-appearance: none;
}

#timeline-slider::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #007bff;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

#timeline-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #007bff;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.timeline-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #666;
  margin-top: 5px;
}

.timeline-date {
  text-align: center;
  font-size: 12px;
  color: #333;
  font-weight: 600;
  padding: 5px;
  background: white;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.toggle-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  background-color: #007bff;
  color: white;
}

.toggle-btn:hover {
  background-color: #0056b3;
}

/* Form Styles */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.form-group input:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

button[type="submit"] {
  background-color: #28a745;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

button[type="submit"]:hover {
  background-color: #218838;
}

/* Status Messages */
.success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  padding: 10px;
  border-radius: 4px;
  margin-top: 10px;
}

.error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  padding: 10px;
  border-radius: 4px;
  margin-top: 10px;
}

#info-panel {
  position: absolute;
  top: 70px;
  right: 20px;
  width: 700px;
  height: 80vh;
  max-height: 900px;
  min-height: 500px;
  background: white;
  padding: 1em;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  z-index: 1;
  display: none;
  cursor: move;
  overflow-y: auto;
}

#info-panel h2 {
  margin-top: 0;
}

/* City description styling */
#city-description {
  margin: 15px 0;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 6px;
  border-left: 4px solid #007bff;
}

#city-description p {
  margin: 0 0 8px 0;
  font-weight: 600;
  color: #333;
}

#description-content {
  margin-top: 8px;
  line-height: 1.6;
  color: #495057;
  max-height: 200px;
  overflow-y: auto;
}

#description-content p {
  margin-bottom: 12px;
  font-weight: normal;
}

#description-content h1, 
#description-content h2, 
#description-content h3 {
  margin: 16px 0 8px 0;
  color: #333;
  font-size: 1.1em;
  font-weight: 600;
}

#description-content ul, 
#description-content ol {
  margin: 8px 0;
  padding-left: 20px;
}

#description-content li {
  margin-bottom: 4px;
}

#close-btn {
  position: sticky;
  position: -webkit-sticky;
  top: 5px;
  right: 8px;
  float: right;
  background: white;
  z-index: 10;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #eee;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

/* City selection modal styles - Perfectly centered */
#city-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  /* Primary centering method - Flexbox */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

#city-modal-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 900px;
  width: 100%;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: row;
  gap: 32px;
  /* Fallback centering - ensures perfect centering */
  position: relative;
}

.city-modal-left {
  flex: 1 1 0;
  padding-right: 16px;
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.city-modal-right {
  flex: 1 1 0;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#city-modal h2 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.city-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.city-item {
  padding: 15px;
  margin: 10px 0;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.city-item:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,123,255,0.3);
}

.city-name {
  font-weight: bold;
  font-size: 16px;
}

.city-population {
  color: #6c757d;
  font-size: 14px;
}

.city-item:hover .city-population {
  color: rgba(255,255,255,0.8);
}

#skip-selection {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}

#skip-selection:hover {
  color: #ccc;
}

/* Top menu styles */
#top-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 10px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#app-title {
  color: white;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

#menu-button {
  background: #007bff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

#menu-button:hover {
  background: #0056b3;
}

/* Adjust map to account for top menu */
#map {
  top: 50px;
  height: calc(100vh - 50px);
}

/* Navigation panel styles */
#nav-panel {
  position: absolute;
  top: 80px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 10;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(0,0,0,0.1);
}

.nav-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.nav-section-title {
  font-size: 10px;
  font-weight: bold;
  color: #495057;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.zoom-controls {
  display: flex;
  flex-direction: column;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  overflow: hidden;
}

.zoom-btn {
  width: 32px;
  height: 32px;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  color: #495057;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.zoom-btn:hover {
  background: #f8f9fa;
  color: #007bff;
}

.zoom-btn:active {
  background: #e9ecef;
}

.zoom-btn + .zoom-btn {
  border-top: 1px solid #dee2e6;
}

.north-arrow {
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid #dee2e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #495057;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.north-arrow:hover {
  border-color: #007bff;
  color: #007bff;
  transform: scale(1.05);
}

.north-arrow::before {
  content: "N";
  font-weight: bold;
  font-size: 12px;
  position: absolute;
  top: 6px;
}

.north-arrow::after {
  content: "▲";
  font-size: 14px;
  margin-top: 6px;
}

.zoom-level {
  font-size: 11px;
  color: #6c757d;
  text-align: center;
  padding: 4px;
  background: #f8f9fa;
  border-radius: 3px;
  border: 1px solid #dee2e6;
  min-width: 50px;
}

.map-scale {
  font-size: 10px;
  color: #495057;
  text-align: center;
  padding: 4px;
  background: #f8f9fa;
  border-radius: 3px;
  border: 1px solid #dee2e6;
  min-width: 50px;
  font-weight: bold;
}

/* Data visualization styles */
.data-section {
  margin: 15px 0;
}

.filter-controls {
  margin-bottom: 15px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #e9ecef;
}

.filter-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.filter-group {
  flex: 1;
}

.filter-group label {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: #495057;
  margin-bottom: 3px;
}

.filter-select {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #ced4da;
  border-radius: 3px;
  font-size: 13px;
  background: white;
}

.filter-select:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

.clear-filters {
  background: #6c757d;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  margin-top: 18px;
}

.clear-filters:hover {
  background: #5a6268;
}

.data-category {
  margin-bottom: 15px;
}

.files-list {
  margin-top: 10px;
}

/* Dashboard grid styles */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  margin: 15px 0;
  height: 320px;
}

.dashboard-tile {
  border: 1px solid #dee2e6;
  border-radius: 6px;
  overflow: hidden;
  background: white;
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}

.dashboard-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.dashboard-tile.dragging {
  opacity: 0.5;
  transform: rotate(5deg);
  z-index: 1000;
}

.dashboard-tile.drop-target {
  border: 2px dashed #007bff;
  background-color: #f8f9ff;
}

.tile-header {
  padding: 8px 25px 8px 10px;
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  font-size: 11px;
  font-weight: bold;
  color: #495057;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: grab;
  position: relative;
}

.tile-header:active {
  cursor: grabbing;
}

.tile-header::after {
  content: "⋮⋮";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
}

.file-title {
  flex: 1;
  text-align: center;
  font-size: 10px;
  font-weight: normal;
  color: #495057;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 120px;
  margin: 0 4px;
}

.small-tile .file-title {
  font-size: 9px;
  max-width: 80px;
}

.tile-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px;
  background: #fff;
  cursor: pointer;
  min-height: 0;
  overflow: hidden;
}

.tile-gif {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 3px;
  display: block;
}

.tile-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 100px;
  width: 100%;
  overflow: hidden;
}

.tile-placeholder {
  color: #6c757d;
  font-size: 12px;
  text-align: center;
  padding: 20px;
}

.tile-info {
  font-size: 10px;
  color: #6c757d;
  margin-top: 5px;
  text-align: center;
  flex-shrink: 0;
}

/* Pagination styles */
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 4px;
}

.pagination-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
}

.pagination-btn:hover {
  background: #0056b3;
}

.pagination-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
}

.pagination-info {
  font-size: 12px;
  color: #495057;
  font-weight: bold;
}

/* New dashboard layout styles */
.dashboard-section {
  margin: 20px 0;
}

.dashboard-section h4 {
  margin: 0 0 15px 0;
  padding: 8px 12px;
  background: #e9ecef;
  border-radius: 4px;
  color: #495057;
  font-size: 14px;
  font-weight: 600;
  border-left: 4px solid #007bff;
}

.dashboard-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 2px;
  margin: 15px 0;
  height: 180px;
  flex-wrap: nowrap !important;
}

.dashboard-section .dashboard-row {
  display: flex !important;
  flex-direction: row !important;
}

.remaining-section .dashboard-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 2px;
  margin: 15px 0;
  height: 180px;
  flex-wrap: nowrap !important;
}

/* Ensure dashboard row tiles don't have conflicting styles */
.dashboard-row .dashboard-tile {
  display: flex !important;
  flex-direction: column !important;
  width: auto !important;
  flex: 1 !important; /* Equal width distribution */
}

.dashboard-row .small-tile {
  display: flex !important;
  flex-direction: column !important;
  width: auto !important;
  flex: 1 !important; /* Equal width distribution */
}

/* Very specific rule to force horizontal layout */
div.dashboard-section.remaining-section div.dashboard-row {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: stretch !important;
  gap: 2px !important;
  flex-wrap: nowrap !important;
}

div.dashboard-section.remaining-section div.dashboard-row div.dashboard-tile.small-tile {
  flex: 1 1 calc(25% - 1.5px) !important;
  max-width: calc(25% - 1.5px) !important;
  min-width: 0 !important;
  width: calc(25% - 1.5px) !important;
}

.small-tile {
  height: 100% !important;
  min-width: 0 !important; /* Prevent grid items from overflowing */
  width: 100% !important;
}

.small-tile .tile-header {
  padding: 6px 8px;
  font-size: 10px;
}

.small-tile .tile-content {
  padding: 6px;
}

.small-tile .tile-info {
  font-size: 9px;
  margin-top: 3px;
}

.small-tile .tile-image-container img {
  max-height: 100px;
}

.remaining-section {
  border-top: 2px solid #e9ecef;
  padding-top: 15px;
  margin-top: 25px;
}

.empty-tile {
  opacity: 0.3;
  cursor: default;
}

.empty-tile:hover {
  transform: none;
  box-shadow: none;
}

.view-mode-toggle {
  margin: 10px 0;
  display: flex;
  gap: 5px;
}

.mode-btn {
  background: #6c757d;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 11px;
}

.mode-btn.active {
  background: #007bff;
}

.mode-btn:hover {
  background: #5a6268;
}

.mode-btn.active:hover {
  background: #0056b3;
}

.category-header {
  background: #f8f9fa;
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: bold;
  color: #495057;
  cursor: pointer;
  border: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-header:hover {
  background: #e9ecef;
}

.category-content {
  display: none;
  padding: 10px 0;
}

.category-content.expanded {
  display: block;
}

.data-file {
  padding: 8px 12px;
  margin: 5px 0;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.data-file:hover {
  background: #f8f9fa;
  border-color: #007bff;
}

.data-file.hidden {
  display: none;
}

.file-name {
  font-size: 12px;
  color: #6c757d;
  margin-top: 3px;
}

.file-type {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 10px;
  margin-right: 8px;
}

.file-type.gif { background: #28a745; }
.file-type.png { background: #17a2b8; }
.file-type.csv { background: #ffc107; color: #212529; }
.file-type.xlsx { background: #6f42c1; }

.expand-icon {
  transition: transform 0.2s ease;
}

.expand-icon.rotated {
  transform: rotate(180deg);
}

.no-results {
  padding: 20px;
  text-align: center;
  color: #6c757d;
  font-style: italic;
}

/* Modal for viewing files */
#file-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

#file-modal-content {
  background: white;
  border-radius: 8px;
  max-width: 98%;
  max-height: 98%;
  width: 1600px;
  height: 900px;
  position: relative;
  display: flex;
  overflow: hidden;
}

#file-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  z-index: 2001;
  color: #666;
  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

#file-modal-close:hover {
  background: #f0f0f0;
  color: #333;
}

.modal-main-content {
  flex: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  background: #f8f9fa;
  border-right: 1px solid #dee2e6;
  min-height: 0;
  overflow: hidden;
}

.modal-main-content.image-mode {
  justify-content: center;
  align-items: center;
  padding: 0;
}

.modal-sidebar {
  flex: 1;
  padding: 20px;
  background: white;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.modal-image {
  max-width: calc(100% - 20px);
  max-height: calc(100% - 20px);
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: crosshair;
  transition: transform 0.5s ease;
  user-select: none;
  transform-origin: center center;
  /* Improve touch interaction on mobile devices */
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

.modal-image.zoomed {
  cursor: grab;
  /* Use containment to prevent overflow beyond bounds */
  contain: layout style;
}

.modal-image.zoomed:active {
  cursor: grabbing;
}

.modal-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 60px 60px 90px 60px; /* More padding to ensure buttons stay visible */
  /* Improve touch interaction on mobile devices */
  touch-action: none;
}

/* Simpler approach - constrain the image directly */
.modal-image {
  max-width: calc(100% - 20px);
  max-height: calc(100% - 20px);
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: crosshair;
  transition: transform 0.5s ease;
  user-select: none;
  transform-origin: center center;
  position: relative;
  z-index: 1;
}

.zoom-selection-box {
  position: absolute;
  border: 2px dashed #007bff;
  background: rgba(0, 123, 255, 0.1);
  pointer-events: none;
  display: none;
  z-index: 10;
}

.image-zoom-controls {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 100;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.zoom-control-btn {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 5px 6px;
  cursor: pointer;
  font-size: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  min-width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-control-btn:hover {
  background: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.zoom-control-btn:active {
  transform: translateY(0);
}

#gif-refresh {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border: 1px solid #1e7e34;
}

#gif-refresh:hover {
  background: linear-gradient(135deg, #218838, #1dd2aa);
  transform: translateY(-1px) scale(1.05);
}

.zoom-control-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.zoom-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 13px;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

.zoom-info.visible {
  opacity: 1;
}

.modal-table-container {
  width: 100%;
  height: 100%;
  overflow: auto;
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 15px;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.modal-table-container::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

.modal-table-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 6px;
}

.modal-table-container::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 6px;
}

.modal-table-container::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.modal-table-container::-webkit-scrollbar-corner {
  background: #f1f1f1;
}

.modal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  min-width: 800px;
  margin: 0;
}

.modal-table th,
.modal-table td {
  border: 1px solid #dee2e6;
  padding: 8px;
  text-align: left;
}

.modal-table th {
  background: #f8f9fa;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 10;
  white-space: nowrap;
  border-bottom: 2px solid #dee2e6;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.modal-table td {
  white-space: nowrap;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.modal-table td:hover {
  overflow: visible;
  white-space: normal;
  word-wrap: break-word;
  position: relative;
  background: #f8f9fa;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.modal-file-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #6c757d;
  font-size: 18px;
}

.modal-file-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.modal-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
  border-bottom: 2px solid #007bff;
  padding-bottom: 10px;
}

.modal-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #495057;
  padding-bottom: 8px;
}

.modal-metadata {
  margin-bottom: 20px;
}

.modal-metadata-item {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}

.modal-metadata-label {
  font-weight: bold;
  color: #495057;
  min-width: 80px;
  margin-right: 10px;
}

.modal-metadata-value {
  color: #6c757d;
  flex: 1;
}

.modal-description {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.modal-description-label {
  font-weight: bold;
  color: #495057;
  margin-bottom: 10px;
  font-size: 16px;
}

.modal-description-content {
  flex: 1;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 15px;
  font-size: 14px;
  line-height: 1.6;
  color: #495057;
  overflow-y: auto;
  white-space: pre-line; /* Preserve line breaks and allow wrapping */
}

.modal-description-content br {
  margin-bottom: 0.5em;
}

/* Style for bullet points and lists in descriptions */
.modal-description-content {
  text-align: left;
}

/* Style for bullet point divs created by JavaScript */
.modal-description-content div[style*="margin-left"] {
  display: block !important;
  margin-left: 20px !important;
  text-indent: -15px !important;
  margin-bottom: 8px !important;
  line-height: 1.4 !important;
  white-space: normal !important;
}

/* Style for indented list items (legacy) */
.modal-description-content span[style*="margin-left"] {
  padding-left: 15px;
  text-indent: -15px;
}

/* Style for section headers in descriptions */
.modal-description-content strong {
  color: #333;
  display: block;
  margin: 10px 0 5px 0;
  font-weight: 600;
}

.modal-description-empty {
  color: #adb5bd;
  font-style: italic;
}

.download-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
  text-decoration: none;
  display: inline-block;
}

.download-btn:hover {
  background: #218838;
  color: white;
  text-decoration: none;
}

/* Mobile-friendly CSS improvements */
#nav-panel {
  z-index: 1;  /* Navigation currently obstructs content boxes */
}

#file-modal {
  padding: 1%; /* Graphs have too much padding, 1% is good for all sizes */
}

.modal-subtitle {
  font-size: 1em; /* Responsive text on graph page */
}

/* Responsive Design - Tablets */
@media (max-width: 768px) {
  #app-title {
    font-size: 0.9em;
  }
  
  #info-panel {
    margin-top: 20px;
    min-height: 60vh;
  }
  
  #modal-data-links-block {
    font-size: 0.85em; /* Data files text should be smaller on mobile */
  }
  
  /* Graphs currently not visible on tablets or phones */
  #file-modal-content {
    flex-direction: column;
    max-width: 100%;
    max-height: 100%;
  }
  
  .modal-image-container {
    min-height: 580px;
  }
  
  /* Make zoom controls more touch-friendly on tablets */
  .image-zoom-controls {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 100;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    padding: 8px;
  }
  
  .zoom-control-btn {
    min-width: 44px !important;
    min-height: 44px !important;
    font-size: 18px !important;
    border-radius: 6px !important;
    padding: 8px !important;
  }
  
  /* Make zoom info more visible on tablets */
  .zoom-info {
    font-size: 16px !important;
    padding: 12px 16px !important;
    bottom: 20px !important;
  }
  
  /* Overview currently not visible on tablets and phones */
  #city-overview-window {
    left: inherit;
    width: inherit;
    margin: 0 9px;
  }
  
  /* Dashboard responsive adjustments for tablets */
  .dashboard-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px;
    height: auto;
    flex-wrap: wrap;
  }
  
  .dashboard-row .small-tile {
    flex: 1 1 calc(50% - 5px) !important;
    max-width: calc(50% - 5px) !important;
  }
  
  .small-tile {
    height: 140px !important;
  }
  
  .dashboard-section h4 {
    font-size: 13px;
    padding: 6px 10px;
  }
}

/* Responsive Design - Phones and large phones like iPhone 12 Pro Max */
@media (max-width: 480px) {
  /* Prevent zoom on double-tap */
  * {
    touch-action: manipulation;
  }
  
  /* Ensure proper body sizing on iOS */
  body {
    -webkit-text-size-adjust: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    /* Fix for iOS Safari viewport issues */
    min-height: -webkit-fill-available;
  }
  
  /* Fix map container for iOS */
  #map {
    height: 100vh;
    height: -webkit-fill-available;
  }
  #top-menu {
    position: fixed !important;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 15px;
    gap: 10px;
    top: 0 !important;
    z-index: 100 !important;
  }
  
  #app-title {
    font-size: 16px;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  
  #top-menu > div {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    flex-wrap: wrap;
  }
  
  #menu-button {
    font-size: 14px !important;
    padding: 8px 12px !important;
    flex: 1;
    max-width: 140px;
  }
  
  #top-menu a {
    font-size: 14px !important;
    padding: 8px 12px !important;
    flex: 1;
    max-width: 140px;
    text-align: center;
  }
  
  /* Fix positioning for mobile header - header is now taller */
  #nav-panel {
    top: 120px !important; /* Adjust for taller mobile header */
    left: 10px !important;
    z-index: 15 !important; /* Ensure it's above other elements */
  }
  
  /* Info panel positioning for mobile */
  #info-panel {
    top: 120px !important; /* Adjust for taller mobile header */
    right: 9px;
    left: 9px;
    width: inherit;
    max-height: calc(100vh - 140px) !important; /* Account for header height */
    z-index: 20 !important; /* Ensure it's above nav-panel */
  }
  
  /* Modal improvements for mobile */
  #city-modal {
    padding: 10px;
  }
  
  #city-modal-content {
    flex-direction: column;
    padding: 20px;
    max-height: calc(100vh - 20px);
    width: 100%;
    margin: 0;
  }
  
  .city-modal-left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  
  .city-modal-right {
    padding-left: 0;
    padding-top: 0;
  }

  .city-modal-left p a {
    font-size: 0.8em !important;
  }
  
  /* Make zoom controls extra touch-friendly on phones */
  .image-zoom-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 100;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .zoom-control-btn {
    min-width: 48px !important;
    min-height: 48px !important;
    font-size: 20px !important;
    border-radius: 8px !important;
    padding: 12px !important;
    border: 2px solid #007bff !important;
    background: white !important;
    color: #007bff !important;
    font-weight: bold !important;
  }
  
  .zoom-control-btn:hover, .zoom-control-btn:active {
    background: #007bff !important;
    color: white !important;
  }
  
  /* Make zoom info more prominent on phones */
  .zoom-info {
    font-size: 18px !important;
    padding: 16px 20px !important;
    bottom: 25px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    max-width: 90% !important;
    text-align: center !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
  }
  
  #city-modal-right {
    padding-left: inherit;
    padding-bottom: 30px;
  }
  
  /* Dashboard responsive adjustments for phones */
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
    height: 280px;
    gap: 8px;
  }
  
  .dashboard-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px;
    height: auto;
    flex-wrap: wrap;
  }
  
  .dashboard-row .small-tile {
    flex: 1 1 calc(50% - 4px) !important;
    max-width: calc(50% - 4px) !important;
  }
  
  .small-tile {
    height: 120px !important;
  }
  
  .small-tile .tile-header {
    padding: 4px 6px;
    font-size: 9px;
  }
  
  .small-tile .tile-info {
    font-size: 8px;
  }
  
  .dashboard-section h4 {
    font-size: 12px;
    padding: 6px 8px;
    margin: 0 0 10px 0;
  }
  
  .pagination-controls {
    margin: 10px 0;
    padding: 8px;
  }
  
  .pagination-btn {
    padding: 8px 12px;
    font-size: 14px;
    min-height: 44px;
  }
  
  /* Simplify feedback button text on mobile */
  .feedback-link {
    font-size: 1em !important;
    padding: 6px 12px !important;
  }
  
  .feedback-link b {
    font-size: 0 !important; /* Hide original text */
  }
  
  .feedback-link::before {
    content: "Give feedback";
    font-weight: bold;
    font-size: 1em;
  }
}

/* Toolbox Styles */
#tools-panel {
  max-width: 100%;
}

/* Floating Toolbox and Panels */
#floating-toolbox, #layers-panel {
  position: absolute !important;
  background: white !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  z-index: 1001 !important;
  border: 2px solid #007bff !important;
  max-height: calc(100vh - 120px) !important;
  overflow-y: auto !important;
}

#floating-toolbox {
  top: 80px;
  left: 20px;
  width: 420px !important;
}

#layers-panel {
  position: absolute !important;
  z-index: 1001 !important;
  background: white !important;
  border: 2px solid #007bff !important;
  border-radius: 8px !important;
  width: 400px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: none !important;
}

#layers-panel.show {
  display: block !important;
}

/* Override any positioning when dragging */
#layers-panel.dragging {
  position: absolute !important;
}

.draggable {
  cursor: move;
}

.draggable.dragging {
  opacity: 0.8;
  z-index: 1002;
}

.toolbox-header, .panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
  background-color: #f8f9fa;
  border-radius: 8px 8px 0 0;
  cursor: move !important;
  user-select: none;
}

.toolbox-header h3, .panel-header h3 {
  margin: 0;
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.toolbox-toggle, .panel-toggle {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  color: #666;
  cursor: pointer !important;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  user-select: none;
  z-index: 10;
  position: relative;
}

.toolbox-toggle:hover, .panel-toggle:hover {
  background-color: #e9ecef;
}

#toolbox-content, #layers-content {
  padding: 15px;
}

.tool-section {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.tool-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.tool-section h4 {
  margin: 0 0 12px 0;
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

.tool-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tool-btn {
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: left;
}

.tool-btn {
  background-color: #007bff;
  color: white;
}

.tool-btn:hover {
  background-color: #0056b3;
}

.tool-btn.danger {
  background-color: #dc3545;
  color: white;
}

.tool-btn.danger:hover {
  background-color: #c82333;
}

.tool-btn:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
}

#selection-info {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 12px;
  min-height: 50px;
  font-size: 13px;
}

.selection-details h4 {
  margin: 0 0 8px 0;
  color: #333;
  font-size: 13px;
  font-weight: 600;
}

.selection-details p {
  margin: 4px 0;
  font-size: 12px;
  color: #666;
}

.selection-details p strong {
  color: #333;
}

/* Responsive toolbox */
@media (max-width: 768px) {
  #floating-toolbox {
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
    top: 70px;
  }
  
  .tool-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .tool-btn {
    flex: 1;
    min-width: 120px;
  }
}

/* Drawing controls customization */
.mapbox-gl-draw_ctrl-draw-btn {
  display: none !important;
}

.mapbox-gl-draw_trash {
  display: none !important;
}

/* Top menu button consistency */
#top-menu button {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  backdrop-filter: blur(10px);
}

#top-menu button:hover {
  background-color: white;
}

/* Time series styles */
.time-series-item {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.series-header {
  padding: 10px;
  background-color: #f5f5f5;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.series-header:hover {
  background-color: #eee;
}

.series-name {
  font-weight: bold;
}

.series-count {
  color: #666;
  font-size: 0.9em;
}

.series-details {
  padding: 10px;
  border-top: 1px solid #ddd;
  background-color: #fafafa;
}

.series-details p {
  margin: 5px 0;
  font-size: 0.9em;
}

/* Timeline controls styling */
#timeline-controls {
  padding: 15px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 10px;
  display: none;
}

#timeline-slider {
  width: 100%;
  margin: 10px 0;
}

#timeline-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9em;
}

#current-date {
  font-weight: bold;
}

/* Analysis section styles */
#analysis-section {
  padding: 10px 0;
}

/* Chart modal styles */
#chart-modal .modal-content {
  max-width: 900px;
  width: 95%;
  max-height: 90vh;
}

#chart-modal .modal-body {
  padding: 20px;
}

#chart-container {
  position: relative;
  height: 400px;
  background: white;
  border-radius: 5px;
  padding: 10px;
}

#analysis-chart {
  max-width: 100%;
  height: 380px !important;
}

/* Statistics summary styles */
.stats-summary {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  border: 1px solid #e9ecef;
}

.stats-summary h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 1.1em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: white;
  border-radius: 4px;
  border: 1px solid #dee2e6;
}

.stat-label {
  font-weight: 600;
  color: #666;
}

.stat-value {
  font-weight: bold;
  color: #2c5aa0;
}

/* Force MapboxDraw layers to appear on top */
.mapboxgl-canvas {
  position: relative;
}

/* Ensure drawing layers have higher z-index */
.mapbox-gl-draw_polygon,
.mapbox-gl-draw_line,
.mapbox-gl-draw_point {
  z-index: 1000 !important;
}

/* Style for drawing cursor */
.mapbox-gl-draw_polygon .mapboxgl-canvas-container {
  cursor: crosshair !important;
}

/* Analysis Modal Styles */
.analysis-modal-header {
  text-align: center;
  padding: 30px 20px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  margin: -20px -20px 30px -20px;
  border-radius: 8px 8px 0 0;
}

.analysis-modal-header h2 {
  margin: 0 0 10px 0;
  font-size: 1.8em;
}

.analysis-modal-header p {
  margin: 0;
  opacity: 0.9;
  font-size: 1.1em;
}

.analysis-options {
  padding: 0 20px 20px;
}

.analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.analysis-btn {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.analysis-btn:hover:not(.disabled) {
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
}

.analysis-btn.active {
  border-color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.analysis-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #f8f9fa;
  border-color: #dee2e6;
}

.analysis-btn.disabled::after {
  content: 'Coming Soon';
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffc107;
  color: #000;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7em;
  font-weight: bold;
}

.analysis-icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.analysis-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
}

.analysis-description {
  font-size: 0.9em;
  color: #666;
  line-height: 1.4;
  text-align: center;
}

.analysis-btn.active .analysis-description {
  color: rgba(255,255,255,0.9);
}

.modal-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* Responsive design for analysis modal */
@media (max-width: 768px) {
  .analysis-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .analysis-btn {
    min-height: 140px;
    padding: 20px 15px;
  }
  
  .analysis-icon {
    font-size: 2.5em;
  }
  
  .analysis-title {
    font-size: 1.1em;
  }
}

/* Layer Management Styles */
.layer-category {
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}

.layer-category:last-child {
  margin-bottom: 0;
}

.dataset-title {
  margin: 0;
  padding: 10px 12px;
  font-size: 0.9em;
  font-weight: 600;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.dataset-section .time-series-item {
  margin: 10px;
}

.dataset-section .time-series-item:last-child {
  margin-bottom: 10px;
}

.load-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 4px 8px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.75em;
  transition: background-color 0.2s ease;
}

.load-btn:hover {
  background: #0056b3;
}
