#vertical-first-section {
   margin: 20px auto 0 auto;
  width: 50%;
  background-color: #f0f0f0;
  height: auto;
  
}


.box {
  background-color: white;
  border: 1px solid black;
  padding: 10px;
  text-align: center;
  flex-grow: 1;
  margin: 10px;
  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%;
}


.box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.box p {
  font-size: 18px;
}

#vertical-second-section {
     margin: 20px auto 0 auto;
  width: 50%;
  background-color: #ccc;
  height: auto;
}
#map {
			height: 200px;
		}
.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;
  }
