 /* Add these styles to the existing style block */
 .section {
    width: 1200px;
    margin: auto;
    padding-left: 0;
    margin-bottom: 10px;
    min-height: 430px;
    overflow: auto;
}

@media only screen and (max-width: 1219px) {
    .section {
        width: 800px;
        /* Adjust as needed for this breakpoint */
    }
}

@media only screen and (max-width: 810px) {
    .section {
        width: 405px;
        /* Adjust as needed for this breakpoint */
    }
}

.responsive {
    margin: 5px;
    padding: 0 6px;
    float: left;
    width: 377.98px;
}

div.gallery iframe {
    width: 100%;
    display: block;
}

.sectionTitle {
    padding-top: 10px;
    padding-left: 10px;
    width: 300px;
    font-weight: bold;
    font-size: 2em;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.show-more {
  display: flex;
  justify-content: center;
  margin: 10px auto 10px auto;
  background-color: #b75600f7;
  color: white;
  padding: 10px 20px;
  border: none;
  transition: opacity 0.3s ease;
  font-size: 28px;
  border-radius: 25px;
}

.show-more:hover {
  opacity: 0.8;
}

/* Buttons */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .button-container button {
    margin: 0 10px;
    background-color: #b75600f7;
    color: white;
    padding: 20px 40px;
    border: none;
    transition: opacity 0.3s ease;
    font-size: 28px;
  }
  
  .button-container button:hover {
    opacity: 0.8;
  }
  
  /* Upload Menu */
  .upload-menu {
    display: none;
    position: fixed; /* Change to fixed */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Set a higher z-index */
  }
  
  .upload-menu h2 {
    margin-top: 0;
    font-size: 28px;
  }
  
  .upload-menu input[type="file"] {
   /* display: none;  Hide the default file input button */
  }
  
  #upload-menu input {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  #upload-menu textarea {
    /* Add styles for the description input component */
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  #upload-menu button {
    /* Add styles for the buttons */
    margin-top: 10px;
    background-color: #b75600f7;
    color: white;
    padding: 10px 20px;
    border: none;
    transition: opacity 0.3s ease;
    font-size: 16px;
  }
  
  #upload-menu button:hover {
    opacity: 0.8;
  }
  
  .upload-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }


  /* Edit Menu */
.edit-menu {
  display: none;
  position: fixed; /* Change to fixed */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 1000; /* Set a higher z-index */
}

.edit-menu h2 {
  margin-top: 0;
  font-size: 28px;
}

#edit-menu button {
  /* Add styles for the buttons */
  margin-top: 10px;
  background-color: #b75600f7;
  color: white;
  padding: 10px 20px;
  border: none;
  transition: opacity 0.3s ease;
  font-size: 16px;
}

#edit-menu button:hover {
  opacity: 0.8;
}

.edit-menu #edit-list-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#edit-list-container #location {
  width: 800px;
}

#edit-list-container #name {
  width: 300px;
  margin-bottom: 10px;
}

.edit-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
