/* Archive Slider Styles */
.archive-timeline {
  margin: 15px 0;
  padding: 0 10px;
}

.archive-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #ddd;
  outline: none;
  transition: background 0.2s;
}

.archive-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2196F3;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.archive-slider::-webkit-slider-thumb:hover {
  background: #1976D2;
  transform: scale(1.1);
}

.archive-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2196F3;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  border: none;
}

.archive-slider::-moz-range-thumb:hover {
  background: #1976D2;
  transform: scale(1.1);
}

.archive-time-display {
  color: #666;
  font-size: 12px;
  margin-top: 8px;
  text-align: center;
}

.archive-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.archive-controls label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.archive-controls input[type="date"],
.archive-controls select {
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.archive-controls button {
  padding: 4px 12px;
  background: #2196F3;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.archive-controls button:hover {
  background: #1976D2;
}

/* Ensure the Places dropdown isn't buried under other elements */
.pac-container {
  position: absolute !important;
  z-index: 2000 !important;
} 