body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #121212;
  color: #ffffff;
  height: 100%;
  overflow: hidden;
}

.logo {
  width: 180px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 10px rgba(29, 185, 84, 0.3));
}

#landing-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: linear-gradient(135deg, #1DB954 0%, #191414 100%);
  color: #ffffff;
  text-align: center;
  transition: opacity 0.5s ease-out;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

#landing-page h1 {
  font-size: 3.5em;
  margin: 0;
  background: linear-gradient(45deg, #1DB954, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(29, 185, 84, 0.3);
}

#landing-page p {
  font-size: 1.2em;
  margin: 20px 0;
  color: #b3b3b3;
}

#startButton {
  padding: 1.2em 2.5em;
  margin-top: 30px;
  font-size: 1.2em;
  cursor: pointer;
  border: none;
  background-color: #1DB954;
  color: white;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

#startButton:hover {
  background-color: #1ed760;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 185, 84, 0.4);
}

#app {
  display: flex;
  height: 100vh;
  width: 100vw;
  background: #121212;
  opacity: 0;
  transition: opacity 0.5s ease-in;
  position: fixed;
  top: 0;
  left: 0;
}

#app.visible {
  opacity: 1;
}

#map {
  flex: 1;
  background: #282828;
  filter: brightness(0.6) invert(1) contrast(3) hue-rotate(200deg) saturate(0.3) brightness(0.7);
  height: 100%;
  width: 100%;
  position: relative;
}

.leaflet-container {
  height: 100%;
  width: 100%;
  background: #282828;
}

#sidebar {
  width: 350px;
  background: #181818;
  padding: 2em;
  border-left: 1px solid #282828;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  overflow-y: auto;
  height: 100vh;
  position: relative;
  z-index: 1000;
}

#sidebar h2 {
  color: #1DB954;
  margin-bottom: 1.5em;
  font-size: 1.8em;
}

#band-details {
  color: #b3b3b3;
  line-height: 1.6;
  padding: 1em 0;
}

.artist-card {
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.artist-image {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.artist-image img {
  width: 100%;
  height: auto;
  display: block;
}

.artist-name {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.info-section {
  margin-bottom: 20px;
}

.info-section h4 {
  color: #666;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.spotify-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spotify-stats p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.spotify-stats i {
  color: #1DB954;
}

.top-tracks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  background: #f8f8f8;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.track-item:hover {
  background: #f0f0f0;
}

.track-rank {
  width: 24px;
  height: 24px;
  background: #1DB954;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

.track-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.track-name {
  font-weight: 500;
  color: #333;
}

.track-popularity-bar {
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
}

.popularity-fill {
  height: 100%;
  background: #1DB954;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.track-popularity {
  font-size: 0.8em;
  color: #666;
}

.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.genre-tag {
  background: #f0f0f0;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.9em;
  color: #666;
}

.spotify-link, .social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1DB954;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  background: #f0f0f0;
  transition: background-color 0.2s;
}

.spotify-link:hover, .social-link:hover {
  background: #e0e0e0;
}

.social-link {
  color: #E1306C;
}

/* Add Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

.hidden {
  display: none !important;
  opacity: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #181818;
}

::-webkit-scrollbar-thumb {
  background: #1DB954;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1ed760;
}

/* Map Styles */
.custom-marker {
  background: none;
  border: none;
}

.marker-pin {
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: #1DB954;
  position: absolute;
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  filter: none !important;
}

.marker-pin::after {
  content: '';
  width: 14px;
  height: 14px;
  margin: 8px 0 0 8px;
  background: #ffffff;
  position: absolute;
  border-radius: 50%;
}

.custom-marker:hover .marker-pin {
  background: #1ed760;
  transform: rotate(-45deg) scale(1.1);
}

/* Popup Styles */
.popup-content {
  padding: 0.5em;
  min-width: 200px;
}

.popup-content h3 {
  color: #1DB954;
  margin: 0 0 0.5em 0;
  font-size: 1.2em;
}

.popup-content p {
  margin: 0.3em 0;
  color: #b3b3b3;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.popup-content i {
  color: #1DB954;
}

/* Leaflet Popup Customization */
.leaflet-popup-content-wrapper {
  background: #282828;
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.4);
  filter: none !important;
}

.leaflet-popup-tip {
  background: #282828;
  filter: none !important;
}

.leaflet-popup-close-button {
  color: #b3b3b3;
  padding: 4px 4px 0 0;
  font-size: 1.2em;
}

.leaflet-popup-close-button:hover {
  color: #1DB954;
}

/* Map Controls */
.leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3) !important;
}

.leaflet-control-zoom a {
  background: #282828 !important;
  color: #ffffff !important;
  border: none !important;
  width: 30px !important;
  height: 30px !important;
  line-height: 30px !important;
  font-size: 16px !important;
}

.leaflet-control-zoom a:hover {
  background: #333333 !important;
  color: #1DB954 !important;
}

.leaflet-control-attribution {
  background: rgba(40, 40, 40, 0.8) !important;
  color: #b3b3b3 !important;
  padding: 4px 8px !important;
  font-size: 11px !important;
}

.leaflet-control-attribution a {
  color: #1DB954 !important;
}

.leaflet-control-attribution a:hover {
  color: #1ed760 !important;
}

.filter-section {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-section h2 {
  margin-bottom: 0.8em;
  font-size: 1.2em;
}

.genre-filters {
  max-height: 300px;
  padding-right: 0.5em;
}

.genre-filter {
  display: inline-flex;
  align-items: center;
  padding: 0.5em 1em;
  border-radius: 20px;
  background: #282828;
  color: #b3b3b3;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #404040;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.genre-filter:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-color: #1DB954;
  color: #1DB954;
}

.genre-filter.active {
  background: #1DB954;
  color: white;
  border-color: #1DB954;
  transform: scale(1.05);
}

.genre-filter::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease-out;
}

.genre-filter:active::after {
  transform: translate(-50%, -50%) scale(2);
  opacity: 0;
}

.genre-name {
  font-size: 0.95em;
  font-weight: 500;
  transition: color 0.2s ease;
}

/* Custom scrollbar for genre filters */
.genre-filters::-webkit-scrollbar {
  width: 6px;
}

.genre-filters::-webkit-scrollbar-track {
  background: #181818;
  border-radius: 3px;
}

.genre-filters::-webkit-scrollbar-thumb {
  background: #404040;
  border-radius: 3px;
}

.genre-filters::-webkit-scrollbar-thumb:hover {
  background: #1DB954;
}

#filter-container {
  position: relative;
  margin-bottom: 1em;
}

.filter-toggle {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.8em 1.2em;
  background: #282828;
  border: 2px solid #404040;
  border-radius: 8px;
  color: #b3b3b3;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1em;
  font-weight: 500;
}

.filter-toggle:hover {
  background: #333333;
  border-color: #1DB954;
  color: #1DB954;
}

.filter-toggle i {
  font-size: 1.1em;
}

.filter-toggle span {
  font-size: 1em;
  font-weight: 500;
}

.filter-content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #181818;
  border: 2px solid #404040;
  border-radius: 8px;
  margin-top: 0.5em;
  padding: 1em;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
  max-height: 400px;
  overflow-y: auto;
}

.filter-content.hidden {
  display: none;
  transform: scaleY(0);
  opacity: 0;
  pointer-events: none;
}

.filter-content.visible {
  display: block;
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

/* Remove the backdrop styles as they're causing interaction issues */
.filter-backdrop {
  display: 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.7);
}

.modal-content {
  background-color: #2a2a2a;
  margin: 10% auto;
  padding: 15px;
  border-radius: 4px;
  width: 90%;
  max-width: 400px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  color: #fff;
  text-align: center;
}

.close-modal {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.close-modal:hover {
  opacity: 1;
}

.artist-list {
  margin-top: 15px;
}

.artist-item {
  padding: 12px;
  border-bottom: 1px solid #3a3a3a;
  cursor: pointer;
  transition: background-color 0.2s;
}

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

.artist-item:hover {
  background-color: #3a3a3a;
}

.artist-item h3 {
  margin: 0 0 8px 0;
  color: #fff;
  font-size: 16px;
}

.artist-item .genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.artist-item .genre-tag {
  background-color: #3a3a3a;
  color: #fff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
}

/* Marker count styles */
.marker-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #ff4444;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  border: 2px solid white;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
  #app {
    flex-direction: column;
  }

  #map {
    width: 100%;
    height: 100vh;
    transition: opacity 0.3s ease;
  }

  #map.map-dimmed {
    opacity: 0.5;
    pointer-events: none;
  }

  #sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    background: #181818;
    display: flex;
    flex-direction: column;
  }

  #sidebar.sidebar-expanded {
    transform: translateX(0);
  }

  #filter-container {
    flex-shrink: 0;
    padding: 1em;
    border-bottom: 1px solid #282828;
  }

  #band-details {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1em;
    position: relative;
  }

  .sidebar-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: #1DB954;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

  .filter-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    margin: 0;
    border-radius: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .filter-content.visible {
    transform: none;
  }

  .artist-card {
    padding: 15px;
    background: #181818;
    color: #ffffff;
  }

  .artist-name {
    color: #ffffff;
  }

  .info-section h4 {
    color: #1DB954;
  }

  .spotify-stats p {
    color: #ffffff;
  }

  .track-item {
    background: #282828;
  }

  .track-name {
    color: #ffffff;
  }

  .track-popularity {
    color: #b3b3b3;
  }

  .genre-tag {
    background: #282828;
    color: #ffffff;
  }

  .spotify-link, .social-link {
    background: #282828;
  }

  .spotify-link:hover, .social-link:hover {
    background: #333333;
  }

  .modal-content {
    width: 95%;
    margin: 5% auto;
  }

  .artist-image {
    max-width: 100%;
  }
}

/* Filter Bubble */
.filter-bubble {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: #181818;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  border-bottom: 1px solid #282828;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 20px;
}

.view-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 12px;
}

.toggle-label {
  font-size: 14px;
  color: #b3b3b3;
}

.filter-toggle {
  background: #282828;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.filter-toggle:hover {
  background: #333333;
  transform: scale(1.05);
}

.filter-toggle i {
  font-size: 18px;
  color: #b3b3b3;
}

.filter-toggle:hover i {
  color: #1DB954;
}

/* Update switch styles to match theme */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #282828;
  transition: .4s;
  border: 1px solid #404040;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background-color: #b3b3b3;
  transition: .4s;
}

input:checked + .slider {
  background-color: #1DB954;
  border-color: #1DB954;
}

input:focus + .slider {
  box-shadow: 0 0 1px #1DB954;
}

input:checked + .slider:before {
  transform: translateX(26px);
  background-color: white;
}

.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Filter Modal */
.filter-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.filter-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #2a2a2a;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.filter-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  border-bottom: 1px solid #444;
  padding-bottom: 15px;
}

.filter-modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
}

.close-filter-modal {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.close-filter-modal:hover {
  opacity: 1;
}

.filter-sections {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  padding-right: 10px;
  margin-right: -10px;
}

.filter-section {
  border-bottom: 1px solid #444;
  padding-bottom: 15px;
}

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

.filter-section h3 {
  margin: 0 0 15px 0;
  font-size: 1.1rem;
  color: #fff;
}

.range-filter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.range-inputs {
  position: relative;
  height: 30px;
  margin: 10px 0;
}

.range-inputs input[type="range"] {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #444;
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  pointer-events: none;
}

.range-inputs input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: #1DB954;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.1s;
}

.range-inputs input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.range-inputs input[type="range"]:nth-child(2) {
  background: #1DB954;
}

.range-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #ccc;
}

.genre-section {
  margin-top: auto;
}

.genre-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 5px 0;
}

.genre-section-header h3 {
  margin: 0;
}

.toggle-genres {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.2s;
  opacity: 0.7;
}

.toggle-genres:hover {
  opacity: 1;
}

.genre-filters {
  max-height: 200px;
  overflow-y: auto;
  transition: max-height 0.3s ease-out;
  margin-top: 10px;
  padding: 5px;
  background: #333;
  border-radius: 8px;
}

.genre-filters.collapsed {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
}

.genre-filter {
  background: #444;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 4px;
  display: inline-block;
  color: #fff;
  border: 1px solid #555;
}

.genre-filter:hover {
  background: #555;
  border-color: #666;
}

.genre-filter.active {
  background: #1DB954;
  border-color: #1DB954;
  color: white;
}

.filter-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-shrink: 0;
}

.primary-button, .secondary-button {
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  font-size: 1rem;
}

.primary-button {
  background: #1DB954;
  color: white;
  flex: 2;
}

.secondary-button {
  background: #444;
  color: #fff;
  flex: 1;
  border: 1px solid #555;
}

.primary-button:hover {
  background: #1ed760;
}

.secondary-button:hover {
  background: #555;
}

/* Listener Section */
.listener-section {
  margin-top: auto;
}

.listener-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 5px 0;
}

.listener-section-header h3 {
  margin: 0;
}

.toggle-listeners {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.2s;
  opacity: 0.7;
}

.toggle-listeners:hover {
  opacity: 1;
}

.listener-filters {
  max-height: 200px;
  overflow-y: auto;
  transition: max-height 0.3s ease-out;
  margin-top: 10px;
  padding: 5px;
  background: #333;
  border-radius: 8px;
}

.listener-filters.collapsed {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
}

.listener-filter {
  background: #444;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 4px;
  display: inline-block;
  color: #fff;
  border: 1px solid #555;
}

.listener-filter:hover {
  background: #555;
  border-color: #666;
}

.listener-filter.active {
  background: #1DB954;
  border-color: #1DB954;
  color: white;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
  .filter-bubble {
    padding: 8px 16px;
    height: 16px;
  }
  
  .toggle-label {
    font-size: 12px;
  }
  
  .filter-toggle {
    width: 36px;
    height: 36px;
  }
  
  .filter-toggle i {
    font-size: 16px;
  }

  .filter-modal-content {
    width: 95%;
    max-height: 80vh;
  }
  
  .genre-filters {
    max-height: 150px;
  }
  
  .primary-button, .secondary-button {
    padding: 10px 20px;
  }
}

/* Venue marker styles */
.venue-marker {
  background-color: #e74c3c;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.venue-marker i {
  font-size: 14px;
}

/* Venue styles */
.venue-icon {
  width: 60px;
  height: 60px;
  background-color: #e74c3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.venue-icon i {
  font-size: 30px;
  color: white;
}

.venue-item {
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.venue-item:hover {
  background-color: #f5f5f5;
}

.venue-info {
  margin-top: 8px;
}

.venue-info p {
  margin: 4px 0;
  color: #666;
}

.venue-info i {
  width: 20px;
  color: #2196F3;
}
