body {
      background-color: #121212;
      color: #ffffff;
      font-family: 'Segoe UI', sans-serif;
    }
    .map-container {
      height: 100vh;
    }
    .list-container {
      overflow-y: scroll;
      height: 100vh;
      background-color: #1e1e1e;
      padding: 1rem;
    }
    .hackathon-item {
      margin-bottom: 1.5rem;
      padding: 1rem;
      border-left: 5px solid #0dcaf0;
      background-color: #2a2a2a;
    }
    .star-rating i {
      color: gold;
    }
    .hackathon-item {
    transition: opacity 0.3s ease;
    }

    .hackathon-faded {
    opacity: 0.3;
    filter: blur(1px);
    }
    .hackathon-item.highlighted {
    border-left: 5px solid #0dcaf0;
    background-color: #333;
    }
    .hackathon-item {
    cursor: pointer;
    }
    .hackathon-item:hover {
      background-color: #333;
      transform: scale(1.02);
    }

    .hackathon-card {
    border: 1px solid #333;
    border-radius: 12px;
    transition: box-shadow 0.3s ease;
    }
    .hackathon-card:hover {
    box-shadow: 0 0 10px #0ff3;
    }

/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1e1e1e; /* Dark background */
}

::-webkit-scrollbar-thumb {
  background-color: #555;       /* Scroll handle */
  border-radius: 10px;
  border: 2px solid #1e1e1e;    /* Space between thumb and track */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}

/* For Firefox */
* {
  /* scrollbar-width: thin; */
  scrollbar-color: #555 #1e1e1e;
}


footer {
  position: sticky;
  bottom: 0px;
  background-color: #212529; /* Dark background */
  z-index: 10;
}

.custom-hover:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.map-filters{
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(4px);
}

.btn:hover {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.map-filters .btn {
  color: white;
  border-color: white;
}

.map-filters .btn.active{
  background-color: #0dcaf0;
  color: white;
}
