<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Battery</title>
    <style>
    *{
    margin: 0px;
    padding: 0;
    }
    body{
        background-color: #090C0F;
        margin-top: 30px;
        font-family: sans-serif;
    }

    .report-header {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      margin-bottom: 25px;
    }

    .report-header h1 {
      margin: 0;
      font-size: 20px;
      color: #e6eef3;
    }

    .report-header p {
      margin: 0;
      color: #9aa3a9;
      font-size: 25px;
    }

    .report-meta {
      align-self: flex-end;
      color: #9aa3a9;
      font-size: 16px;
      margin-right: 50px;
      margin-bottom: 10px;
    }

    .title{
        color: white;
        background-color: #2A62D1;
        align-items: center;
        display: inline-block;
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 35px;
        margin: 10px 0px;
    }
    .container{
        margin: auto;
        width: 1250px;
    }

    .battery-details{
    background-color: #181F25;
    padding: 20px 50px;
    margin: 10px 0px;
    border-radius: 10px;
    }

    .battery-content{
        color: white;
        display: flex;
        justify-content: center;
        margin: 20px 0px;
    }

    .battery-content h3{
        flex: 1;
        font-size: 30px;
    }
    .battery-content p{
        flex: 1;
        font-size: 30px;
    }

    table{
        margin: 10px 0px;
        margin-top: 30px;
        width: 100%;
    }
    th,td{
        background-color: #181F25;
        color: white;
        padding:10px;
    text-align: center;
    }
    p{
        color: white;
        font-size: 3vh;
        font-family: times-new-roman;
        margin-left: 30px;
    }
    </style>
  </head>
 <body>
