.leaflet-editing-icon {
  background-color: #3498db; /* Blue */
  border-radius: 50%;
  width: 1px;
  height: 1px;
}
body {
  background-color: #0c2340; /* Dark Blue */
  color: #ffffff; /* White */
  font-family: 'Arial', sans-serif;
}

#map {
  height: 500px;
  width: 800px;
  text-align: center;
  margin-left: 40%;
  margin-top: 10%;
  border: 2px solid #3498db; /* Blue */
  border-radius: 10px;
  margin-bottom: 100px;

}

#area-display {
  position: absolute;
  top: 40%;
  left: 10px;
  background-color: #2980b9; /* Dark Blue */
  color: #ffffff; /* White */
  padding: 10px;
  border: 2px solid #3498db; /* Blue */
  border-radius: 10px;
}

#search-bar {
  position: absolute;
  top: 300px;
  right: 600px;
  z-index: 1000;
  color: #ffffff; /* White */
}

input[type="text"] {
  background-color: #3498db; /* Blue */
  color: #ffffff; /* White */
  border: 2px solid #2980b9; /* Dark Blue */
  border-radius: 5px;
  padding: 5px;
}

button {
  background-color: #3498db; /* Blue */
  color: #ffffff; /* White */
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #2980b9; /* Dark Blue */
}
.dropdown {
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    top: 7%;
    background-color: #284b63;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: #45677d;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .coordinates {
    margin-top: 50px;
}

h1 {
    text-align: center;
    font-size: 35px;
    color: whitesmoke;
}
#calculation-results{
    text-align: center;
}
.headerout {
  background-color: #284b63;
  border: 1px solid black;
  text-align: center;
}
.header {
  height: 60px;
  background: #284b63;
  padding: 0px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  overflow: hidden;
  display: flex;
  column-gap: 100px;
  padding: 15px 16px 15px 16px;
}
.btn {
  background-color: #284b63;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2rem;
  margin: 4px 2px;
  cursor: pointer;
}
@media only screen and (max-width: 750px){
    #map {
        height: 300px;
        width: 350px;
        text-align: center;
        margin-left: 0;
        margin-top: 80%;
        border: 2px solid #3498db; 
        border-radius: 10px;
        margin-bottom: 200px;
    
    }
    #area-display {
        position: absolute;
        top: 57%;
        left: 70px;
        background-color: #2980b9; /* Dark Blue */
        color: #ffffff; /* White */
        padding: 10px;
        border: 2px solid #3498db; /* Blue */
        border-radius: 10px;
        text-align: center;
    }
    #search-bar {
        position: absolute;
        top: 520px;
        left: 20px;
        color: #ffffff; /* White */
    }
    h1 {
        text-align: center;
        font-size: 35px;
        color: whitesmoke;
        margin-left: 0px;
    }
    input[type="text"] {
        background-color: #3498db; /* Blue */
        color: #ffffff; /* White */
        border: 2px solid #2980b9; /* Dark Blue */
        border-radius: 5px;
        padding: 5px;
        margin-left: 100px;
        
    }

    .header {
      margin-top: -35px;
      height: 30px;
      background: #284b63;
      padding: 0px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
      overflow: hidden;
      display: flex;
      column-gap: 0px;
      padding: 15px 16px 15px 16px;
    }
    .btn {
      padding-left: 10px;
      font-size: 0.8rem;
    }
    #calculation-results{
      position: absolute;
      margin-top: 20%;
      text-align: left;
      margin-bottom: 200px;
      margin-top: 0px;
      font-size: 0.8rem;
  }
}