.main {
  background-color: rgb(42, 42, 42);
  height: 100%;
}

.plants-list {
  padding: 10px;
}

.plant-card {
  margin: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mapbox {
  z-index: 1;
  position: absolute;
}

.route-container {
  position: absolute;
  display: inline-block;
  right: 0;
  z-index: 2000;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  height: 1vh;
}
.route-container::-webkit-scrollbar {
  display: none;
}

.plants-container {
  position: absolute;
  display: inline-block;
  right: 0;
  z-index: 2000;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  height: 1vh;
}
.plants-container::-webkit-scrollbar {
  display: none;
}

.plants-container2 {
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 400px;
  z-index: 2000;

  height: 1vh;
}

.scrollButton {
  position: absolute;
  display: inline-block;
  right: 0;
  z-index: 2000;
  top: 50vh;
}
.root-form {
  position: absolute;
  display: inline-block;
  top: 0;
  z-index: 2001;
  overflow-y: auto;
  background-color: white;
  border: 1px solid black;
}
.marker-pop {
  position: absolute;
  display: inline-block;
  right: 50%;
  z-index: 2000;
  color: paleturquoise;
}

body::-webkit-scrollbar {
  width: 12px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: '#454545'; /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #e6e6e6 !important; /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
  border: 3px #e6e6e6; /* creates padding around scroll thumb */
}

.close {
  cursor: pointer;
  position: absolute;
  display: block;
  padding: 2px 5px;
  line-height: 20px;
  right: -10px;
  top: -10px;
  font-size: 24px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #cfcece;
}

.leaflet-control-container {
  display: none;
}

/*-----------For Plant Popup--------------*/
.content {
  flex-basis: calc(50% - 10px); /* Each item takes 50% width with some margin */
  margin-bottom: 20px; /* Add some bottom margin between items */
  text-align: center;
  font-size: medium;
}
.content h1 {
  font-size: large;
}
.full-row {
  flex-basis: calc(
    100% - 10px
  ); /* Items with full-row class take up the whole row */
  margin-bottom: 20px; /* Add some bottom margin between items */
  text-align: center;
  font-size: medium;
}
.full-row h1 {
  font-size: large;
}
@media screen and (max-width: 600px) {
  .content {
    flex-basis: calc(
      100% - 10px
    ); /* On smaller screens, each item takes 100% width */
  }
}

.hiddenscroll::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hiddenscroll {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.camera-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
}

.camera-button button {
  background-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid black;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.camera-button button:hover {
  transform: scale(1.1);
}
