.vertical-container {
  white-space: nowrap;
}

#vertical-first-section,
#vertical-first-section1,
#vertical-first-section2 {
  display: inline-block;
  border: 1px solid black; /* Add a solid black border of 1 pixel */
  
}

#vertical-first-section {
  width: 33%; /* Each section will now take up one-third of the container's width */
  background-color: #f0f0f0;
}

#vertical-first-section1 {
  width: 33%; /* Each section will now take up one-third of the container's width */
  background-color: #f0f0f0;
}

#vertical-first-section2 {
  width: 33%; /* Each section will now take up one-third of the container's width */
  background-color: #f0f0f0;
}


.container_first {
    display: flex;
    flex-wrap: wrap;
}

.column {
    flex-basis: 0;
    padding: 10px;
    border: 1px solid #333;
     background-color: #f0f0f0;
    box-sizing: border-box;
    overflow: hidden; /* Prevent the content from overflowing */
}

/* Styles for the image inside the first column */
.column:first-child img {
    max-width: 100%; /* Limit the maximum width of the image to its container */
    height: auto; /* Maintain the image's aspect ratio */
}

/* Set fixed width for the first column */
.column:first-child {
    flex-basis: 400px;
}

/* Make the second and third columns share the remaining space equally */
.column:nth-child(n+2) {
    flex-grow: 1;
}



#container1 {
  white-space: nowrap;
}

#vertical-second-section,
#vertical-second-section1 {
  display: inline-block;
  height: auto;
    border: 1px solid black; /* Add a solid black border of 1 pixel */
}

#vertical-second-section {
  width: 50%;
  background-color: #f0f0f0;
}

#vertical-second-section1 {
  width: 50%;
  background-color: #f0f0f0;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.box {
  background-color: white;
  border: 1px solid #333333;
  padding: 1px;
  text-align: left;
  flex-grow: 1;
  margin: 1px;
  position: relative;
  box-sizing: border-box;
}

.heading-container {
  display: flex;
  justify-content: center;
}

.heading {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  width: 100%;
}


.container h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.box p {
  font-size: 18px;
}


#map {
			height: 400px;
		}
.battery {
  position: relative;
  width: 60px;
  height: 30px;
  border: 1px solid black;
  border-radius: 5px;
  overflow: hidden;
}

.battery-level {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: green;
}

.battery-cap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: black;
  border-radius: 50%;
}
 table {
    border: 2px solid black;
    border-collapse: collapse;
  }
  th, td {
    border: 1px solid black;
    padding: 10px;
    text-align: center;
  }
