/* General body styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden; /* Prevent scrolling */
}

/* Navbar styles */
nav, .nav-links{
  display: flex;
}

nav{
  background: rgb(0, 51, 161);
  justify-content: space-around;
  align-items: center;
  height: 17vh;
}

/*rem is more or less pixels on the screen*/

.nav-links{  
  gap: 2rem;
  list-style: none;
  font-size: 1.5rem;
}

.nav-links a{
  color: white;
}

.cuny-logo {
  height: 12vh;
  align-self: center;
  justify-content: left;
  align-items: center;
  display: flex;
}

a{
  color: black;
  text-decoration: none;
  text-decoration-color: white;
}

a:hover{
  color: gray;
  text-decoration: underline;
  text-underline-offset: 1rem;
  text-decoration-color: rgb(181,181,181);
}

p{
  color: rgb(85, 85, 85);
}

/* Filter controls styles */
.filters {
  position: absolute;
  top: 18%; /* Adjust according to your navbar height */
  z-index: 1;
  left: 6%;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.filters label {
  display: block;
  margin-bottom: 5px;
}

.logo{
  color: white;
  font-size: 2rem;

}

.logo:hover{
  cursor: default;
}

/* Flexbox container to center map */
.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin: 60px;
   
}

footer{
  background: rgb(0, 51, 161);
  height: 20vh;
  text-align: center;
}

footer p{
  color: white;
}

footer .footer-CR{
  margin-top: 0;
}

footer .developers {
  font-size: 2.5rem;
  align-items: flex-start;
}

/* Map container styles */
#map {
  width: 90vw; 
  height: 60vh; 
  border: 2px solid #000; 
  box-sizing: border-box; 
}
