@import "battery_gauge.css";
@import "charts.css";
@import "menu.css";

    body {
        font-family: Arial, sans-serif;
        background-color: #e4e4e4;
    }

/* login */

    .container {
        max-width: 400px;
        margin: 50px auto;
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    h1, h2, h3 {
        text-align: center;
    }
    input[type="text"],
    input[type="password"],
    input[type="submit"] {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        box-sizing: border-box;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    input[type="submit"] {
        background-color: #0a4579;
        color: white;
        cursor: pointer;
    }
    input[type="submit"]:hover {
        background-color: #003561;
    }

/*div nebeneinander*/
  .div_sidebyside_container {
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
  }
  .div_sidebyside_inner-div {
    width: 24%;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 10px;
  }

/*daten liste*/
  .nerd-info {
    margin-bottom: 20px;
    padding-left: 20px;
  }
  .nerd-info p {
    font-weight: normal;
    margin: 5px 0;
    text-align: left;
  }
  .nerd-info .nerd-span-data {
    font-weight: bold;
    display: inline-block;
    min-width: 200px; /* Festlegen der Breite für Tabulatorausrichtung */
  }

  tr {
    text-align: left;
  }
  td {
    padding-left: 10px;
    }