/*Header*/

.hero-image {
  background-image: url("/static/images/helix_blue.png");
  background-color: #cccccc;
  height: 560px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

/*
.topline table {
  width:100%;
  border-width:0px 0px 0px 0px;
  border-spacing:0px;
  background:#990000;
}
*/

body {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    background-color: #fdfdfd;
}
.shadow {
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
}
.btn-danger {
    color: #fff;
    background-color: #f00000;
    border-color: #dc281e;
}
.masthead {
    background: #00448B;
    height: auto;
    padding-bottom: 15px;
    box-shadow: 0 16px 48px #E3E7EB;
    padding-top: 10px;
}

.head_text {
    color: white;
}

.logout-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #333;
  font-size: 1.3rem;
  position: relative;
  top: 3px; /* Verschiebung */
}

.login-box {
  background: rgba(255, 255, 255, 0.8); /* weiß, aber leicht durchsichtig */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.smaller-table {
  font-size: 16px;
}

.navbar .nav-link {
  position: relative;
  margin-right: 10px; /* Abstand zwischen den Icons */
}

/* Zustand: Warenkorb hat Einträge */
.cart-has-items {
    display: inline-block;
    color: #c0392b;
}

.page-header {
  height: 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* obere 25% */
.header-top {
  height: 15%;
  background-color: #B12216; /* Bootstrap danger */
}

/* weiße Linie */
.header-divider {
  height: 3px;
  background-color: white;
}

/* untere 75% */
.header-bottom {
  height: calc(85% - 3px);
  background-color: #00448B; /* Bootstrap primary */
}

.logo-header {
  background-color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;

  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}

.company-logo {
  height: 100px;              /* FIXE visuelle Höhe */
  max-width: 100%;
  width: auto;

  image-rendering: auto;
}

