﻿/* ==========================================================================
   # BOF Site.css
   --------------------------------------------------------------------------
   # StyleSheet: Site.css - Counter css
   # Datum: 2021-09-28
   # Version: 1.0.0
   # Autor: Patrick Dietze | MAE Systems GmbH
   ========================================================================== */

/* Grundeinstellungen
   ========================================================================== */


*,
*::before,
*::after {
  box-sizing: border-box;
}


html {
  color: #333;
  font-family: Arial, Verdana, sans-serif;
  font-size: 16px;
  height: 100%;
}

h1 {
  margin: 0;
  font-size: 1.25rem;
}


.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
}

.page-header-inner,
.page-main-inner,
.page-footer-inner {
    max-width: 75rem;
    margin: auto;
    background-color: rgba(255,255,255,0.5);
}

.page-main-innercontent
{
    flex: 1 0 auto; /* wächst mit, falls nötig */
    max-width: 75rem;
    margin: auto;
    background-color: rgba(255,255,255,0.5);
}
.page-header,
.page-footer {
    background-color: #f2f2f2;
}


.page-main {
  display: flex;
  flex: 1 1 auto;
}

.box-login {
  margin: 1rem auto;
  padding: 1rem;
  border: 1px solid #eee;
}

.box-oder {
  text-align: center;
}

.box-va {
  margin: 1rem auto;
  padding: 1rem;
  border: 1px solid #eee;
}


input[type=submit],
.button {
  background-color: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.25rem 0.5rem;
  text-align: center;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
  
  background-color: #003776;
  border-color: #003776;
  color: #fff;
}

input[type=submit]:hover,
.button:hover {
  background-color: #fff;
  border-color: #003776;
  color: #003776;
}


input[type=text],
input[type=password],
.input,
.select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 1px solid #eee;
    color: inherit;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    outline: 0;
    width: 100%;
    background-clip: padding-box;
    padding: 0.25rem 0.5rem;
    margin-bottom: 0.25rem;
}

label {
  display: inline-block;
  margin: 0.25rem 0.25rem 0 0;
}

input[type=checkbox] {
  margin-right: 0.25rem;
}

.table-login td {
  vertical-align: top;
  position: relative;
  
}

.table-login td span {
  position: absolute;
  top: 0.25rem;
  right: -0.5rem;
  
}

.table-login td[align=center] {
  text-align: left;
  visibility: hidden;
}

.align-right {
  text-align: right;
}

.box-va h1 {
  margin-bottom: 1rem;
}


.table-va {
  margin: 1rem auto;
  width: 100%;
}

.table-va th,
.table-va td{
  padding: 0.25rem 0.5rem;
  
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-right: -1rem;
  margin-left: -1rem;
}

.flex-container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.flex-50 {
  width: 50%;
  padding: 1rem;
  min-width: 14rem;
}

.flex {
  padding: 1rem;
}

.calendar {
  width: 14rem;
}

.calendar a{
  text-decoration: none;
}
.calendar a:hover{
  font-weight: bold;
}

.row {
  margin-bottom: 1rem;
  min-width: 30rem;
}

.select-listbox {
  height: 6rem;
  width: 10rem;
}

.flex .button {
  max-height: 2rem;
  margin: 0.25rem;
}

.plotly-chart {
    width: 100%; /* volle Breite des Containers */
    max-width: 100%; /* nie breiter als Container */
    min-width: 600px; /* Mindestbreite */
    height: 400px; /* feste Höhe */
}
.form-full {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
}

    /* Optional: Abstand oben/unten */
    .form-full > div {
        margin-bottom: 1.5rem;
    }

.info-block {
    background-color: #f0f4f8; /* hellblaues, leichtes Panel */
    border-radius: 8px;
    padding: 1rem 1.5rem;
    max-width: 800px;
    margin: 1rem auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

    .info-block h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: #1a202c;
    }

    .info-block p {
        margin: 0.25rem 0 0.5rem 0;
        color: #555;
        line-height: 1.4;
    }

    .info-block .updated {
        font-size: 0.9rem;
        color: #777;
        margin-top: 0.5rem;
        text-align: right;
    }

/* ==========================================================================
   # EOF Site.css
   ========================================================================== */