@charset "UTF-8";
/*--------------------------------------------------------------
>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Tooltip
3. Einfacher eigener Textcontainer
5. Kreissymbole für Symptomtabelle in sprechstunden.html
4. Überschreiben der Header Klassen für zusätzliche Navigationsvarianten
5. Navigation vertikal
6. Fontgrößen responsiv
7. Hover Info für Bilder
----------------------------------------------*/



.pr_color_text {
  color: #274760;
}


/*--------------------------------------------------------------
1. Tooltip ohne JS
----------------------------------------------------------------*/
.tooltip-col {
  position: relative;
  cursor: help;
}

.tooltip-hover {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 5px 8px;
  position: absolute;
  z-index: 10;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.75rem;
}

.tooltip-col:hover .tooltip-hover {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
3. Einfacher eigener Textcontainer
----------------------------------------------------------------*/

.text-container {
    max-width: 900px;       /* optional: beschränkt die Breite für gute Lesbarkeit */
    margin: 0 auto;         /* zentriert den Container */
    /*padding: 0 20px;        Abstand links und rechts */
    padding: 2rem 1rem;
    box-sizing: border-box; /* sorgt dafür, dass Padding die Breite nicht überschreitet */
    font-family: sans-serif;
    line-height: 1.6;
      }

  .text-container h1,
  .text-container h2,
  .text-container h3,
  .text-container h4 {
    color: #006666;
  }

  .text-container p.subtitle {
    font-style: italic;
    margin-bottom: 1rem;
  }

  .text-container p.caption {
    font-size: 0.8rem;
    color: #6c757d; /* Bootstrap's secondary text color */
  }

  .text-container img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
  }

  .text-container table {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  .text-container th {
    text-align: left;
    white-space: nowrap;
    font-weight: 600;
    padding-right: 1rem;
    vertical-align: top;
  }

  .text-container td {
    vertical-align: top;
  }

  .text-container ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .text-container button {
    border: none;
    background-color: #f68129;
    color: #fff;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 50rem; /* pill shape */
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    display: inline-block;
  }

  .text-container button:hover {
    background-color: #e36f1d;
  }

/*--------------------------------------------------------------
5. Kreissymbole für Symptomtabelle in sprechstunden.html
----------------------------------------------------------------*/
  .symptom-matrix td,
  .symptom-matrix th {
    padding: 0.5rem;
  }

  .circle {
    display: inline-block;
    border-radius: 50%;
    background-color: #006666;
  }

  .size-1 {
    width: 10px;
    height: 10px;
  }

  .size-2 {
    width: 16px;
    height: 16px;
  }

  .size-3 {
    width: 22px;
    height: 22px;
  }

/*--------------------------------------------------------------
4. Überschreiben der Header Klassen für zusätzliche Navigationsvarianten
----------------------------------------------------------------*/


.main_header_left {
  display: flex;
}

.logo {
  display: inline-block;
  /* position: relative; */
  /* max-width: 200px; oder auto, je nach Design */
  /* margin-right: 20px; */
  /* margin-left: 20px; */
}
/* .logo { */
  /* position: relative; */
  /* z-index: 101; */
/* } */
.logo {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}


.nav_short {
  display: flex;
  align-items: center;
  margin-left: 20px; Abstand zum linken Element, z. B. Logo
}

.nav_short .cs_nav_list {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
  /* gap: 20px; Abstand zwischen Links */
  align-items: center;
}

.nav_short .cs_nav_list li {
  margin: 0;
}

.nav_short .cs_nav_list li a {
  text-decoration: none;
  color: #274760;
  font-weight: 500;
  padding: 5px 10px;
  transition: color 0.3s;
}

.nav_short .cs_site_header.cs_style1.cs_white_color .menu-item-has-children ul {
  color: #274760;
}

.nav_short .cs_nav_list ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

.nav_short .cs_nav_list li a:hover {
  color: #2c7081;
}

.nav_short {
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 1.6em;
}
.nav_short .cs_nav_list {
  display: flex !important;
  flex-wrap: wrap;
  height: inherit;
}
.nav_short .cs_nav_list > li {
  margin-right: 50px;
  height: inherit;
}
.nav_short .cs_nav_list > li:last-child {
  margin-right: 0;
}
.nav_short .cs_nav_list > li > a {
  padding: 10px 0;
  display: inline-flex;
  position: relative;
  height: inherit;
  align-items: center;
}
.nav_short .cs_nav_list > li > ul {
  left: 0;
  top: calc(100% + 15px);
}
.nav_short .cs_nav_list > li:hover > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease;
}
.nav_short .cs_nav_list > li.menu-item-has-children > a {
  position: relative;
}
.nav_short .cs_nav_list > li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  height: 6px;
  width: 6px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
  border-left: 0;
  border-top: 0;
  margin-left: 6px;
  position: relative;
  top: -1px;
  border-radius: 0px 0px 2px 0px;
}
.nav_short .cs_nav_list li:not(.cs_mega_menu) {
  position: relative;
}
.nav_short .cs_nav_list ul {
  width: 260px;
  background-color: #fff;
  position: absolute;
  box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
  padding: 10px 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  display: block !important;
  border-radius: 15px;
  box-shadow: 0px 4px 21px 1px rgba(48, 123, 196, 0.1);
  transition: all 0.1s ease;
}
.nav_short .cs_nav_list ul li:hover ul {
  top: 0px;
}
.nav_short .cs_nav_list ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease;
}
.nav_short .cs_nav_list ul a {
  display: block;
  line-height: inherit;
  padding: 10px 20px;
}
.nav_short .cs_nav_list ul ul {
  top: 15px;
  left: 100%;
}
/* .cs_menu_toggle, */
/* .cs_munu_dropdown_toggle { */
  /* display: none; */
/* } */
.nav_short .cs_nav_list .cs_mega_menu {
  position: relative;
}
.nav_short .cs_nav_list .cs_mega_wrapper {
  width: 475px !important;
  left: 0;
  display: flex !important;
  position: absolute;
  padding: 5px 15px 10px;
}
.nav_short .cs_nav_list .cs_mega_wrapper a {
  padding: 7px 10px;
}
.nav_short .cs_nav_list .cs_mega_wrapper > li {
  flex: 1;
  padding: 10px 0;
}
.nav_short .cs_nav_list .cs_mega_wrapper > li > a {
  font-size: 18px;
  font-weight: 600;
  pointer-events: none;
}
.nav_short .cs_nav_list .cs_mega_wrapper > li > a:hover {
  background-color: transparent;
}
.nav_short .cs_nav_list .cs_mega_wrapper > li ul {
  position: initial;
  border: none;
  padding: 0;
  width: 100%;
  box-shadow: none;
  background-color: transparent;
}
.nav_short .cs_nav_list .cs_mega_wrapper > li ul a {
  transition: all 0.4s ease;
}
.nav_short .cs_nav_list .cs_mega_wrapper > li ul a:hover {
  letter-spacing: 1px;
}
.nav_short .cs_nav_list .cs_mega_menu:hover .cs_mega_wrapper li ul {
  opacity: 1;
  visibility: visible;
}
.nav_short .cs_nav_list > li ul:not(.cs_mega_wrapper) .menu-item-has-children > a {
  position: relative;
}

/*--------------------------------------------------------------
5. Navigation vertikal
----------------------------------------------------------------*/

.nav_vert ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*--------------------------------------------------------------
6. Fontgrößen responsiv
----------------------------------------------------------------*/

.fs_72 {
  font-size: 72px;
  line-height: 1.14em;
  @media (max-width: 1700px) {
    font-size: 56px;
  }
  @media (max-width: 991px) {
    font-size: 50px;
  }
  @media (max-width: 780px) {
    font-size: 48px;
  }  
  @media (max-width: 575px) {
    font-size: 44px;
  }
  @media (max-width: 400px) {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
7. Logo
----------------------------------------------------------------*/

.cs_site_branding {
  display: inline-block;
  max-width: 100px;
}


/*--------------------------------------------------------------
8. Hover Info für Bilder
----------------------------------------------------------------*/
<style>
  .image-tooltip-container {
    position: relative;
    display: inline-block;
  }

  .image-tooltip-container img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 0.25rem;
  }

  .tooltip-text {
    position: relative;
    bottom: 6px;
    right: 6px;
    background-color: rgba(255, 255, 255, 0.85); /* heller Hintergrund */
    color: #333;
    font-size: 0.7rem;
    padding: 3px 6px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
  }

  .image-tooltip-container:hover .tooltip-text {
    opacity: 1;
  }
</style>

