    :root{/*von Original-Homepage*/
    --farberot: #d04141;
    --farbegelb: #f0b020;
    --farbeblau: #6f89ff;
    --farbegruen: #41d09f;
    --farbegrau: #ededed;
    --farbeschwarz: #111111;
    }

/* STYLESHEET FOR MENU */
    table {
      border-collapse: collapse;
      width: 100%;
      font-family: sans-serif;
      margin: 20px 0;
      box-shadow: 0 2px 5px var(--farbeschwarz);
    }

    th, td {
      border: 1px solid var(--farbegrau);
      padding: 12px 16px;
      text-align: left;
      font-size: 2.5em;
    }

    th {
      background-color: var(--farberot);
      color: white;
    }

    tr {
      background-color: white;
      transition: background-color 0.3s ease;
      cursor: pointer;
    }

    tr:hover {
      background-color: var(--farbegelb);
    }

    tr:active {
      background-color: var(--farbeblau);
      color: white;
    }

            .number-cell {
      display: flex;
      text-align: right;
      align-items: right;
      gap: 8px;
    }

    .number-cell i {
      font-size: 2em;
      color: var(--farberot);
    } 
    
.mobile-container {
    /* max-width: 480px;*/
     margin: auto;
     background-color: var(--farbegrau);
     color: white;
     font-weight: bold;
     border-radius: 15px;
   }
   
.topnav {
    overflow: hidden;
    background-color: var(--farbeschwarz);
    position: relative;
    border-radius: 15px;
}

.topnav #myLinks {
    display: none;
    position: fixed;
    top: 100px; /* oder Höhe deiner Topnav */
    left: 0;
    right: 0;
    border-radius: 15px;
    background-color: var(--farberot);
    z-index: 2000;
    padding: 10px 0;
}

.topnav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 3em;
    display: block;
}

.topnav a.icon {
    background: black;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.active {
    background-color: var(--farberot);
}

/* STYLESHEET FOR MAPS*/
.content {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display:inline-block;
}
.image-container {
    position:relative;
    width: 100%;
    max-width: 1200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.image-container img {
    width: 100%;
}
.backgroundimage {
    width: 100%;
  }
@keyframes fadeIn {
    to {
    opacity: 1;
    transform: translate(-50%, -100%) scale(1);
    }
}

.marker {
  position: absolute;
  width: 7vw;
  max-width: 70px;
  height: 7vw;
  max-height: 70px;
  transform: translate(-50%, -100%); /* Zentriert über dem Punkt */
  cursor: pointer;
  z-index: 10;
}

.marker-body {
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.marker-label{
    transform: rotate(45deg);
}
.marker-body{
    text-align: center;
    font-size: 2em;
    color: black;
    position:relative;
    max-height: 15em;
}
.marker-body .icon{
    margin-top: -0.2em;
    color: black;
    position:relative;
    font-size: 1.2em;
}

.marker-body-rot {
    background-color: var(--farberot);
}
.marker-body-gruen {
    background-color: var(--farbegruen);
}
.marker-body-blau {
    background-color: var(--farbeblau);
}
.marker-body-gelb {
    background-color: var(--farbegelb);
}

/*Infobox*/
.info-box {
    position: absolute;
    background: white;
    color: black;
    border-radius: 8px;
    padding: 10px 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    font-family: sans-serif;
    font-size: 2em;
    line-height: 1.4;
    width: max-content;
    z-index: 100;
    display: none;
}

.info-box strong {
    width: auto;
}

/* STYLESHEET FOR Zeitplan */
.ttevent {
    background: #fff;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px var(--farbeschwarz);
    position:relative;
    min-width: 80%;
}

.tticon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 6rem;
    color: var(--farbegelb);
}

.tttime {
    font-size: 1.5rem;
    color: var(--farberot);
    margin-bottom: 5px;
}

.tttitle {
    font-size: 3rem; 
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

.ttlocation {
    color: var(--farbeschwarz);
    font-size: 1.2rem;
}

.ttlocation:empty::before {
    content: "";
    color: var(--farbeschwarz);
}

.video-wrapper {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 1rem; /* optional, für etwas Abstand am Rand */
    margin-top: 50px;
  }

  .video-wrapper video {
    max-width: 100%;
    height: auto;
    width: 100%;
  }



.names{
    margin-left: 50px;
}

#about_us{
font-weight: bold;
   background-color: var(--farberot);
   width: 160px;
   color: var(--farbegrau);
}

#teacher{
    font-weight: bold;
   font-style: italic;
}

#students{
    font-weight: bold;
   font-style: italic;
}