body {
    background:#1F1F1F;
}
.header-box {
  background-color:#dc3544;
  border-radius: 25px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.custom-box {
  background-color:#2f2f2f;
  border-radius: 25px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.glas {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
      overflow: hidden;
      color: black;
    }

.glas::before {
      content: '';
      position: absolute;
      top: -6px;
      left: -6px;
      right: -6px;
      bottom: -6px;
      border-radius: inherit;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
      pointer-events: none;
      z-index: -1;
      mask: radial-gradient(ellipse at center, transparent 60%, black 100%);
    }

h2 {
    color: #E0E0E0;
}
h3 {
    color: #E0E0E0;
    font-size: 1,125rem;
}
h5 {
    color: #E0E0E0;
    font-size: 1rem;
}
p{
  color: #E0E0E0;
}


.accordion-item {
  background-color: #3f3f3f;
  border: 1px solid #5f5f5f;
  color: #E0E0E0;
}
.bg-secondary {
    background-color: #3f3f3f;
}

.accordion-button {
  background-color: #3f3f3f;
  color: #E0E0E0;
}

.accordion-button:not(.collapsed) {
  background-color: #dc3544; /* Kontrastfarbe */
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #dc3544;
}

.accordion-body {
  background-color: #3f3f3f;
  color: #E0E0E0;
}
.btn-red {
    background-color: #dc3544;
    border-color: #dc3544;
    color: white;
}

.btn-red:hover {
    background-color: #bb2d3b;
    border-color: #b02a37;
}
.thumbnail {
            width: 230px;
            height: 230px;
            object-fit: cover;
            margin: 5px;
            border: 1px solid #ccc;
        }
label {
  display: block;
  margin-bottom: 1em;
}

table {
width: 100%;
border-collapse: collapse;
background-color: #3f3f3f;
color: #e0e0e0;
text-align: center;
}
th, td {
border: 1px solid #5f5f5f;
padding: 8px;
}
th {
background-color: #3a3a3a;
}
.redcell {background-color:#dc3544;}

a {
  color: #dc3645;                /* Standard-Linkfarbe (Bootstrap-Blau) */
  text-decoration: none;        /* Kein Unterstrich */
  font-weight: 500;             /* Leicht hervorgehoben */
  transition: color 0.3s ease, text-decoration 0.3s ease;
  cursor: pointer;              /* Zeigt klickbaren Link an */
}
a:hover,
a:focus {
  color: #dc3645;               /* Dunkleres Blau beim Hover/Focus */
  text-decoration: underline;   /* Unterstrich beim Hover/Focus */
  outline: none;                /* Entfernt Standard-Focus-Outline */
}
a:active {
  color: #dc3645;               /* Noch dunkler bei Klick */
}
a:visited {
  color: #e5e5e5;               /* Lila für besuchte Links */
}
a[disabled],
a.disabled {
  pointer-events: none;         /* Deaktiviert Klicks */
  color: #e5e5e5;               /* Grauer Ton für disabled */
  text-decoration: none;
  opacity: 0.65;
  cursor: not-allowed;
}