/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 02 2024 | 12:47:57 */
 :root {
      --hintergrundColor: #ffffff;
      --textColor: #000000;
      --ueberschriftenColor: #624E38;

      --h1Color: #624E38;
      --h2Color: #624E38;
      --h3Color: #624E38;
      --linksColor: #D773F0;
      --schaltflaechenColor: #A19384;
      --iconsColor: #fff;
      --umrahmungenColor: #624E38;
      --rechteSpalteTextfarbeColor: #624E38;
      --rechteSpalteVerlaufStartColor: #E0C3A4;
      --rechteSpalteVerlaufEndeColor: #A19384;
      --h1SchattenfarbeColor: #333333;
      --boxSchattenColor: #333333;
      --fontFamily: 'Arial', sans-serif;
      --borderRadius: 5px;
      --borderWidth: 1px;
      --h1FontSize: 32px;
      --h1FontWeight: 700;
      --h1ShadowSize: 8px;
      --h2FontSize: 24px;
      --h2FontWeight: 700;
      --h3FontSize: 20px;
      --h3FontWeight: 700;
      --textFontSize: 16px;
      --textFontWeight: 400;
    }
    body {
      background-color: var(--hintergrundColor);
      color: var(--textColor);
      font-family: var(--fontFamily);
      display: flex;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    h1, h2, h3 {
      color: var(--ueberschriftenColor);
    }
    
    .left-menu {
      width: 390px; 
      padding: 10px;
      background-color: #292929;
      margin-right: 50px;
      position: relative;
      transition: width 0.3s ease, padding 0.3s ease; 
    }
    .left-menu.collapsed {
      width: 3px;
      padding: 0;
      overflow: hidden; 
    }
    .menu-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 70px;
      height: 70px;
      background-color: rgba(41, 41, 41, 0.80);
      color: #fff;
      border: none;
      cursor: pointer;
      border-radius: 2px 5px 5px 2px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, left 0.3s ease;
      position: fixed;
      top: 10px;
      left: 440px;
      z-index: 1001;
    }
    .left-menu.collapsed + .menu-toggle {
      left: 20px;
    }
    .menu-toggle::before {
      content: "";
      width: 20px;
      height: 100%;
      position: absolute;
      left: -20px;
    }
    .menu-toggle:hover {
      transform: translateY(-5px);
    }
    .menu-toggle i {
      font-size: 28px;
      color: #fff;
    }
    .hidden-rows {
      display: none;
    }
    .container {
      display: flex;
      flex-wrap: wrap;
      padding: 20px;
      max-width: 940px;
      margin-top: 250px; /* Nur oberer Abstand */
      margin-bottom: auto; /* Unterer Abstand */
      margin-left: auto;
      margin-right: auto;    
    }
    
    .left-column {
      flex: 0 0 70%;
      max-width: 70%;
      padding: 20px;
      box-sizing: border-box;
    }
    .right-column {
      flex: 0 0 30%;
      max-width: 30%;
      padding: 20px;
      box-sizing: border-box;
      border: var(--borderWidth) solid var(--umrahmungenColor);
      border-radius: var(--borderRadius);
      background: linear-gradient(to right, var(--rechteSpalteVerlaufStartColor), var(--rechteSpalteVerlaufEndeColor));
      color: var(--rechteSpalteTextfarbeColor);
      overflow: hidden; /* Verhindert Überlauf */
      word-wrap: break-word; /* Bricht lange Wörter um */
      text-overflow: ellipsis; /* Zeigt überlaufenden Text mit Ellipsen an */
    }
    .image-container {
      width: 100%;
      max-width: 250px;
      margin: auto;
      border-radius: var(--borderRadius);
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .image-container img {
      width: 100%;
      height: auto;
      display: block;
    }
    h1 {
      font-size: var(--h1FontSize);
      font-weight: var(--h1FontWeight);
      text-shadow: var(--h1ShadowSize) var(--h1SchattenfarbeColor);
    }
    h2 {
      font-size: var(--h2FontSize);
      font-weight: var(--h2FontWeight);
    }
    h3 {
      font-size: var(--h3FontSize);
      font-weight: var(--h3FontWeight);
    }
    p, ul {
      font-size: var(--textFontSize);
      font-weight: var(--textFontWeight);
    }
    a {
      color: var(--linksColor);
    }
    .right-column-text {
      font-family: var(--fontFamily);
      color: var(--rechteSpalteTextfarbeColor);
    }
    .right-column-text h2 {
      font-size: var(--h2FontSize);
      font-weight: var(--h2FontWeight);
    }
    button {
      background-color: var(--schaltflaechenColor);
    }
    .icon {
      color: var(--iconsColor);
    }
    .text-with-spacing {
      margin-bottom: 20px;
      line-height: 1.2;
    }
    .button-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }
    .button {
      width: 100%;
      margin: 5px 0;
      padding: 10px;
      background-color: var(--schaltflaechenColor);
      color: var(--iconsColor);
      border: none;
      border-radius: var(--borderRadius);
      font-size: 24px;
      cursor: pointer;
      text-align: center;
    }
    .button:hover {
      background-color: var(--boxSchattenColor);
    }
    .icon-list {
      list-style-type: none;
      padding: 0;
    }
    .icon-list li {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    .icon-list .material-icons {
      margin-right: 10px;
      font-size: 24px;
    }
    .accordion {
      width: 100%;
      max-width: 760px;
      background: transparent;
      border-radius: var(--borderRadius);
      overflow: hidden;
      margin-top: 20px;
    }
    .accordion-item {
      margin-bottom: 5px;
    }
    .accordion-header {
      background: transparent;
      padding: 15px 20px;
      cursor: pointer;
      font-size: var(--h3FontSize);
      font-weight: var(--h3FontWeight);
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: var(--borderWidth) solid var(--umrahmungenColor);
      border-radius: var(--borderRadius);
      margin-bottom: 7px;
    }
    .accordion-header:hover {
      background: var(--boxSchattenColor);
      color: #fff;
    }
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: transparent;
      padding: 0 20px;
    }
    .accordion-content p {
      padding: 15px 0;
      margin: 0;
      font-size: 16px;
    }
    .accordion-header::after {
      content: '\002B';
      font-size: 24px;
      line-height: 18px;
      transition: transform 0.3s ease;
    }
    .accordion-header.active::after {
      content: '\2212';
      transform: rotate(180deg);
    }
    .icon {
      font-size: 24px;
      transition: transform 0.4s;
    }
    .icon.rotate {
      transform: rotate(180deg);
    }
    @media (max-width: 768px) {
      .left-column, .right-column {
        flex: 0 0 100%;
        max-width: 100%;
      }
      h1, h2 {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 5px;
        text-align: center;
      }
      .text-with-spacing {
        font-size: 12px;
        text-align: justify;
      }
      .image-container img {
        max-width: 100%;
      }
    }
    #box {
      box-shadow: 0 4px 8px var(--boxSchattenColor);
    }

    .hidden {
      display: none;
    }
button {
    padding: 10px 7px;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    background-color: #292929;
    color: white;
    border: 1px solid #50868B;
    border-radius: 4px;
    padding-top: 10px;
    padding-bottom: 10px;
}

    button:hover {
      background-color: #50868B;
    }
    table {
      margin: 0;
      border-collapse: collapse;
      
      border: none;
      line-height: 1.3;
      box-sizing: border-box;
    }
    th, td {
      border: none;
      padding: 1px;
      text-align: left;
      color: #50868B;
      font-size: 16px;
      padding-left: 10px;
      padding-right: 10px;
    }
    th {
      background-color: #292929;
    }
    .color-sample {
      width: 22px;
      height: 22px;
      display: inline-block;
      margin: 0 2px;
    }
    .dragover {
      border-color: #333;
    }
    input[type="number"] {
      height: 30px;
      width: 80px;
      border-radius: 4px;
      border: 1px solid #50868B;
      text-align: center;
      font-size: 16px;
      margin: 5px 0;
      color: white;
      background-color: #292929;
    }
    
      input[type="text"] {
      height: 20px;
      width: 92%;
      border-radius: 4px;
      border: 1px solid #50868B;
      text-align: left;
      font-size: 14px;
      margin: 5px 0;
      padding: 10px;
      color: #fff;
      background-color: #292929;
    }
    
   textarea {
  width: 95%;
  border-radius: 4px;
  border: 1px solid #50868B;
  text-align: left;
  font-size: 14px;
  margin: 0px 0;
    padding-right: 0px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 0;
  color: white;
  background-color: #292929;
}
    
    td p {
      margin: 0;
      text-align: left;
      padding-left: 10px;
    }
    table tr td:nth-child(2) {
      width: 46px;
    }
    table tr td:nth-child(2) button {
      width: 100%;
    }
    
    td select {
      text-align: right;
    }
    td[colspan="4"] h3 {
      text-align: center;
    }

    form {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 300px;
    }
    .center-align {
      text-align: center;
    }
    @media (max-width: 768px) {
      select, input[type="color"], select.font-dropdown {
        width: 100%;
      }
      .color-dot {
        width: 20px;
        height: 20px;
      }
      th, td {
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
      }
      button {
        padding: 8px 16px;
        font-size: 14px;
      }
      .drop-area {
        max-width: 100%;
        height: auto;
        padding: 20px;
      }
    }
    @media (max-width: 480px) {
      .color-dot {
        width: 15px;
        height: 15px;
      }
      th, td {
        font-size: 12px;
        padding-left: 5px;
        padding-right: 5px;
      }
      button {
        padding: 6px 12px;
        font-size: 12px;
      }
      .drop-area {
        padding: 15px;
      }
      input[type="number"], select, input[type="color"], select.font-dropdown {
        font-size: 12px;
      }
    }
.color-button-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.button-label {
  width: 30px; /* Adjust the width as needed */
  font-weight: normal;
  font-size: 26px;
  color: #FFFFFF;
  text-align: left;
  margin-right: 60px; /* Add space between the label and buttons */
}

.color-button {
  display: flex;
  gap: 4px;
  cursor: pointer;
}

.color-button div {
  width: 20px;
  height: 20px;
}

    .icon-cell {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .icon {
      vertical-align: middle;
      cursor: pointer;
      color: #16878C;
      text-align: left;
      margin-top: 5px;
    }
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: auto; /* Automatische Breite */
    max-width: 200px; /* Maximale Breite des Tooltips */
    background-color: #333;
    color: #fff;
    font-size: 14px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #50868B;
    padding: 5px;
    position: absolute;
    z-index: 1;
    top: -30px; /* Abstand nach oben */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    line-height: 1.2; /* Anpassung des Zeilenabstands */
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.font-dropdown {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #50868B;
    background-color: #292929;
    color: white;
    appearance: none; /* Entfernt das standardmäßige Dropdown-Pfeil-Icon in einigen Browsern */
}

.font-dropdown option {
    background-color: #292929;
    color: white;
}

.calendar-container {
    background-color: #f0f0f0;
    padding: 1px 5px 5px;
    border-radius: 4px;
    border: 1px solid #50868B;
    text-align: center;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.calendar-header button {
    background-color: #292929;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
}

.calendar-header button:hover {
    background-color: #50868B;

}

#calendar table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    background-color: #fff;
}

#calendar th {
    background-color: #292929;
    color: white;
    padding: 5px;

}

#calendar td {
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    text-align: center;

}

#calendar td:hover {
    background-color: #ffcc80;
}

#calendar .today {
    background-color: orange;
    border-radius: 4px;
}

#calendar .selected {
    background-color: rgba(80, 134, 139, 0.70);
    color: white;
    border-radius: 4px;

}


/* Highlight weekends */
#calendar .weekend {
    background-color: #f2f2f2;
        color: red;


}

#calendar .week-number {
    color: gray;
    font-size: 14px;
}


/* Tooltip-Stil */
#calendar td .tooltip {
    visibility: hidden;
    width: auto;
    background-color: rgba(48, 48, 48, 0.80);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    border: 1px solid red;

    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Positionierung über dem Element */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    line-height: 1.3;
}

#calendar td:hover .tooltip {
    visibility: visible;
    opacity: 1;
}


/* Highlight special events */
#calendar .event {
    background-color: rgba(255, 0, 0, 0.10);
        color: red;


    position: relative;
}

#calendar .event::after {
    content: attr(data-event);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 0, 0, 0.8);
    color: white;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 3px;
    white-space: nowrap;
}

#calendar .holiday {
    background-color: rgba(255, 182, 193, 0.3);
    color: red;
    text-decoration: none;
    position: relative;
}

#calendar .holiday .tooltip {
    visibility: hidden;
    width: auto;
    background-color: rgba(48, 48, 48, 0.80);
    color: #fff;
    text-align: center;
    font-size: 12px;
    border-radius: 5px;
    border: 1px solid #50868B;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

#calendar .holiday:hover .tooltip {
    visibility: visible;
    opacity: 1;
}


.font-dropdown {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #50868B;
    background-color: #292929;
    color: white;
    appearance: none;
    text-align: left;
}

.font-dropdown option {
    background-color: #292929;
    color: white;
}