body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
 }
.logo {
  position: absolute;
  top: 30px; 
  left: 30px; 
  width: 250px; 
  height: auto; 
  border-radius: 10px;
}
 
 .green-section {
  padding-left: 15em;
  background-color: #1a9473;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6em;
 }
 
 .different-section {
  
 }
 
 .container {
  max-width: 800px;
  margin-left: 20px; 
  text-align: left; 
 }
 
 h1 {
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  color: #fff;
  text-align: center;
  margin-left: 4px;
  
 }
 
 .dropdown {
  font-size: larger;
  border-style: solid;
  border-color: #1a5f4c;
  width: 18em;
  text-align: center;
  display: inline-block;
  justify-content: center;
  margin-left: 30px;
 }
 
 .dropbtn {
  background-color: #1a9473;
  color: white;
  padding: 12px 18px;
  font-size: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
 }
 
 .dropdown-content {
  display: none;
  position: absolute;
  background-color: #b7cfc9;
  width: 346px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-style: solid;
  border-color: #1a5f4c;
  border-radius: 4px;
 }
 
 .dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: 500;
 }
 
 img {
  display: flex;
  justify-content: flex-end;
 }
 
 .dropdown-content a:hover {
  background-color: #f1f1f1;
 }
 
 .dropdown:hover .dropdown-content {
  display: block;
 }
 
 .dropdown:hover .dropbtn {
  background-color: #2980b9;
 }
 
 .spot-container1,
 .spot-container2,
 .spot-container3 {
  padding: 5em;
  padding-left: 5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100vh;
 }
 
 .location {
  border: 1px solid black;
  padding: 10px;
}

.location-spots {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 50px;
  row-gap: 0px;
}

.spot-columns {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 150px;
  column-gap: 100px;
}

.spot {
  width: 2em;
  height: 50px;
  border: 2px solid black;
  gap: 50px;
}

 
 .available {
  background-color: green;
 }
 
 .occupied {
  background-color: red;
 }
 
 .hidden-1,
 .hidden-2,
 .hidden-3 {
  display: none;
 }
 
 /* Mobile */
 @media screen and (max-width: 480px) {
  .green-section {
    padding-left: 1em;
    gap: 2em;
  }
 
  .container {
    margin-left: 5px;
  }
 
  .dropdown {
    margin-left: 1em;
    width: 14em;
  }
  .dropdown-content{
    width: 270px;
  }
  .h1{
    margin-left: 10px;
  }
 
  img {
    display: none;
  }
 }
 

 @media screen and (max-width: 1280px) {
  .green-section {
    padding-left: 1em;
    gap: 2em;
    justify-content: center;
    align-items: center; 
    text-align: center; 
  }
 
  .container {
    margin-left: auto;
    margin-right: auto;
  }
 
  .dropdown {
    margin-left: auto;
    margin-right: auto;
    width: 14em;
  }

  .dropdown-content{
    width: 270px;
  }
 
  h1 {
    margin-left: 10px; 
  }
 
  img {
    display: none; 
  }
 }