/* ===== Kuchenliste Entry Rows ===== */
.volleyball-container {
       width: 100%;
       max-width: 100%;
       margin: 0 auto;
   }

   .volleyball-svg {
       width: 100%;
       height: auto;
       display: block;
   }

.candle img{
max-width: 15px;
}


.kuchen-entry-row {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 15px;
    padding-right: 90px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(200, 200, 200, 0.5);
    border-radius: 8px;
    box-sizing: border-box;
    width: 100%;
    min-height: 50px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.kuchen-entry-row.deleting {
    opacity: 0;
    transform: translateX(-20px);
}

.entry-name {
    color: #000000;
    font-weight: 500;
    width: 150px;
    flex-shrink: 0;
    min-width: 0;
}

.cake-display {
    color: #000000;
    width: 200px;
    flex-shrink: 0;
    min-width: 0;
}

.cake-display.hidden {
    display: none;
}

.cake-input {
    display: none;
    width: 200px;
    padding: 5px 8px;
    border: 2px solid #4CAF50;
    border-radius: 4px;
    font-size: 14px;
    flex-shrink: 0;
}

.cake-input.visible {
    display: block;
}

/* ===== Entry Buttons ===== */
.edit-btn-kuchen,
.confirm-btn-kuchen,
.delete-btn-kuchen,
.cancel-btn-kuchen {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s ease;
}

.edit-btn-kuchen {
    right: 55px;
    background: #4CAF50;
    font-size: 16px;
}

.edit-btn-kuchen:hover {
    background: #45a049;
}

.edit-btn-kuchen.hidden {
    display: none;
}

.confirm-btn-kuchen {
    right: 55px;
    background: #4CAF50;
    font-size: 18px;
    display: none;
    opacity: 0.4;
    cursor: not-allowed;
}

.confirm-btn-kuchen.visible {
    display: flex;
}

.confirm-btn-kuchen.active {
    opacity: 1;
    cursor: pointer;
}

.confirm-btn-kuchen.active:hover {
    background: #45a049;
}

.delete-btn-kuchen {
    right: 15px;
    background: #ff6b6b;
    font-size: 20px;
}

.delete-btn-kuchen:hover {
    background: #ff4444;
}

.delete-btn-kuchen.hidden {
    display: none;
}

.cancel-btn-kuchen {
    right: 15px;
    background: #ff6b6b;
    font-size: 20px;
    display: none;
}

.cancel-btn-kuchen.visible {
    display: flex;
}

.cancel-btn-kuchen:hover {
    background: #ff4444;
}

/* ===== Empty Message ===== */
.empty-entries-message {
    color: #FF9B22;
    text-align: center;
    padding: 20px;
    margin: 0;
}

/* ===== Text Editor ===== */
.kuchenliste-text-editor {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(200, 200, 200, 0.5);
    border-radius: 8px;
}

.editable-textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.editable-textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.editable-textarea:disabled {
    background-color: #f5f5f5;
    cursor: wait;
}

.text-editor-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.text-editor-save-btn,
.text-editor-cancel-btn {
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    font-weight: bold;
    line-height: 1;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 20px;
}

.text-editor-save-btn {
    background: #4CAF50;
    cursor: not-allowed;
    opacity: 0.4;
}

.text-editor-save-btn.active {
    opacity: 1;
    cursor: pointer;
}

.text-editor-save-btn.active:hover {
    background: #45a049;
}

.text-editor-save-btn.saving {
    opacity: 0.6;
    cursor: wait;
}

.text-editor-save-btn.saved {
    opacity: 1;
}

.text-editor-cancel-btn {
    background: #ff6b6b;
    cursor: pointer;
    display: none;
    font-size: 24px;
}

.text-editor-cancel-btn.visible {
    display: inline-flex;
}

.text-editor-cancel-btn:hover {
    background: #ff4444;
}

/* ===== Text Editor Notifications ===== */
.text-editor-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 99999;
}

.text-editor-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.text-editor-notification.success {
    background-color: #4CAF50;
}

.text-editor-notification.error {
    background-color: #f44336;
}

/* ===== Delete Modal ===== */
.delete-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.delete-modal-overlay.visible {
    opacity: 1;
}

.delete-modal-overlay.hiding {
    opacity: 0;
}

.delete-modal {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 90%;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.2s ease;
}

.delete-modal-overlay.visible .delete-modal {
    opacity: 1;
    transform: scale(1);
}

.delete-modal-title {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.delete-modal-text {
    margin: 0 0 25px 0;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.delete-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.delete-modal-cancel,
.delete-modal-confirm {
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.delete-modal-cancel {
    border: 1px solid #ddd;
    background: white;
    color: #333;
}

.delete-modal-cancel:hover {
    background: #f5f5f5;
}

.delete-modal-confirm {
    border: none;
    background: #ff6b6b;
    color: white;
}

.delete-modal-confirm:hover {
    background: #ff4444;
}

/* ===== General Messages ===== */
.kuchen-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    z-index: 10000;
}

.kuchen-message.success {
    background: rgba(40, 167, 69, 0.9);
}

.kuchen-message.error {
    background: rgba(220, 53, 69, 0.9);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .kuchen-entry-row {
        gap: 10px;
        padding: 12px;
        padding-right: 80px;
    }

    .entry-name {
        width: 120px;
    }

    .cake-display,
    .cake-input {
        width: 150px;
    }

    .delete-modal {
        padding: 20px;
    }

    .delete-modal-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .kuchen-entry-row {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 15px;
    }

    .entry-name,
    .cake-display,
    .cake-input {
        width: 100%;
    }

    .edit-btn-kuchen,
    .confirm-btn-kuchen {
        right: 50px;
        top: 15px;
    }

    .delete-btn-kuchen,
    .cancel-btn-kuchen {
        right: 15px;
        top: 15px;
    }
}














.dateBG {
background-color: #ffcdfa;
}

#cake {
width:90%;
 margin: 0 auto;
 background-color:#ffa468;
}


#topping {
width:90%;
 margin: 0 auto;
 background-color:#ffa468;
}

.elementor-col-100{
width:auto !important;
margin:0 auto ;
}





.elementor-field-group {

}






.entry-row {
  display: flex;
  align-items: center;
  padding: 9px 15px;
  position: relative;
  font-size: 20px;
  font-weight: normal;
      font-weight: 800;
  margin-top: 10px;
border-radius: 14px !important;
  background-color: white;
  transition: all 0.3s;
  border: 3px solid;
}

.entry-row.attending {
    border-color: #4caf50;
}

.entry-row.not-attending {
    border-color: #f44336;
}


#submitBtn {

    height: 100px;
    width: 100px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Standard wenn CHECKED: Grün/Plus */
    background-color: rgba(76, 175, 80, 0.15);
    border: 3px solid #4caf50;
    color: #4caf50;
}



.planetContainer {
    width: 100%;
    height: 400px;
    margin-top: -80px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    pointer-events: none;
}

#planetStart {
  margin-top: -40px !important;
  }

#entriesTable {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.entry-row {
    transition: all 0.3s ease;
}

#starfieldContainer {
    opacity: 1;
    position: absolute; /* Statt fixed */
    top: 0;
    left: 0;
    width: 100vw;
    height: 130vh; /* Statt 100vh */
    overflow: hidden; /* Statt hidden */
    z-index: 0;
    pointer-events: none;
}

#starfieldBG {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 150vh; /* Startwert - wird durch JS überschrieben */
 /*   background: linear-gradient(to bottom, #1a237e, #0d1421);
   */
    z-index: 0;
}

#starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh; /* Startwert - wird durch JS überschrieben */
    z-index: 0;
}

.page-content {
  /*  background: linear-gradient(to bottom, #1a237e, #0d1421);
*/
background: linear-gradient(to bottom, #1a237e, #0d1421);

}

/*
.star {

    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: twinkle 3s infinite ease-in-out;
    will-change: transform;
}

*/








.star {
    position: absolute;
    border-radius: 50%;


    /* iOS-Optimierungen */
    -webkit-transform: translateZ(0); /* Hardware-Beschleunigung aktivieren */
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity; /* Browser informieren über kommende Änderungen */
}

/* iOS: Keine Animation */
.star.ios-static {
    animation: none;
    opacity: 0.7; /* Feste Helligkeit für iOS */
}

.starfield-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 1;
  /*  transition: opacity 2s ease-in-out;
*/
    overflow: hidden;

    /* iOS-Optimierungen */
    -webkit-transform: translate3d(0, 0, 0); /* Hardware-Layer erzwingen */
    transform: translate3d(0, 0, 0);
    -webkit-overflow-scrolling: touch;
}





.star.small { width: 2px; height: 2px; }
.star.medium { width: 4px; height: 4px; }
.star.large { width: 6px; height: 6px; }

.star.yellow {
    background: #ffd700;
    box-shadow: 0 0 10px #ffd700;
}

.star.white {
    background: white;
    box-shadow: 0 0 6px rgba(255,255,255,0.5);
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.star:nth-child(2n) { animation-duration: 2s; }
.star:nth-child(3n) { animation-duration: 4s; }
.star:nth-child(4n) { animation-delay: 1s; }
.star:nth-child(5n) { animation-delay: 2s; }








.star {
    position: absolute;
    border-radius: 50%;
}

/* iOS: Keine Animation */
.star.ios-static {
    animation: none;
    opacity: 1; /* Feste Helligkeit für iOS */
}

.star.small {
    width: 1px;
    height: 1px;
}

.star.medium {
    width: 2px;
    height: 2px;
}

.star.large {
    width: 3px;
    height: 3px;
}

.star.white {
    background-color: #ffffff;
    box-shadow: 0 0 3px #ffffff;
}

.star.yellow {
    background-color: #ffeb3b;
    box-shadow: 0 0 3px #ffeb3b;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}




html, body {
      margin-top:0px !important;
    scroll-behavior: auto; /* Verhindert sanftes Scrollen beim Laden */
    scroll-padding-top: 0; /* Optional: Scroll-Anker verhindern */

    font-family: "Mark Pro", Sans-serif;
    font-weight: 600;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    margin: 0;
    padding: 0;
     /*
 transition: height 1000ms ease-in-out;

    height: 100%;
   */
}


html {

    }

body {
    margin: 0;
    padding: 0;
    background: #0d1421 !important;

   /* background: linear-gradient(to bottom, #1a237e, #0d1421); */
/*
    background: linear-gradient(to bottom, #1a237e, #0d1421);
*/


/*
     background: linear-gradient(180deg, #1a237e, #0d1421);
*/
/*
    background-attachment: fixed; /* Wichtig für lange Seiten */
/*background:blue !important;
*/

    }

#content{
/*
    height: 100vh;
*/
}




#entriesTable {
    transition: opacity 0.3s ease, transform 0.3s ease;
}


.transparent {
    opacity: 0;
    transition: opacity 0.3s ease; /* Optional: sanfte Überblendung */
}

.noTransparent {
    opacity: 1;
    transition: opacity 0.3s ease; /* Optional: sanfte Überblendung */
}






        #volleyball-text {
            animation: pulseCycle 8s infinite ease-in-out;
            transform: translateX(-10px);
        }

         #volleyball-text:hover {
            fill: #FF9B22 !important;
            cursor: pointer !important;
        }

         .pointer:hover {
            cursor: default !important;
        }

        #rotating-circle {
            animation: pulseCycle 8s infinite ease-in-out, rotate 12s infinite linear;
            transform-origin: 321.9px 108px;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes pulseCycle {
            0% { fill: #f4d03f; }
            16.67% { fill: #f7dc6f; }
            33.33% { fill: #f1c40f; }
            50% { fill: rgb(255, 155, 34); }
            66.67% { fill: #e67e22; }
            83.33% { fill: #f4d03f; }
            100% { fill: #f4d03f; }
        }

        @media (max-width: 768px) {
            .volleyball-container { padding: 15px 0; }
        }

        @media (max-width: 480px) {
            .volleyball-container { padding: 10px 0; }
        }








 #startContainer {
    z-index: 10;
}

#wpadminbar {
    display: none;
}

.form-section.past-date .name-field,
.form-section.past-date .comment-field,
.form-section.past-date .checkbox-tooltip-row,
.form-section.past-date .submit-button {
    opacity: 0;
    pointer-events: none;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0s ease;
}

/* Spezielle Behandlung für die input-row bei past-date */
.form-section.past-date .input-row {
    height: 0;
    margin: 0;
    overflow: hidden;
    transition: all 0s ease;
}

/* Stelle sicher, dass das form-section Element selbst sichtbar bleibt */
.form-section.past-date {
    opacity: 1;
}

/* Optional: Reduziere auch das Padding der form-section bei past-date */
.form-section.past-date {
    padding-top: 20px;
    padding-bottom: 20px;
    transition: padding 0s ease;
}





 #nameInput {
    margin-left: 10px;
  }

  #commentInput {
    margin-right: 10px;
  }





.container_Tooltip {
          position: relative;
          display: inline-block;
          margin: 30px;
      }

      /* SVG Tooltip mit sanfter Bounce-Animation */
      .tooltip-svg-rounded {
          position: absolute;
          left: 100%;
          top: 50%;
          transform: translateY(-50%);
          margin-left: 15px;

          /* Sanfte Bounce-Animation */
          animation: gentleFloat 1.5s ease-in-out infinite;
      }

      .tooltip-svg-rounded svg {
          filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
      }

      .tooltip-svg-rounded text {
          dominant-baseline: middle;
          text-anchor: start;
      }

      /* Sanfte Hoch-Runter-Animation */
      @keyframes gentleFloat {
          0%, 100% {
              transform: translateY(-50%);
          }
          50% {
              transform: translateY(-55%);
          }
      }




      .checkbox-tooltip-row {
          display: flex;
          justify-content: center;
          align-items: center;
          position: relative;
          margin: 20px 0;
      }

      .checkbox-row {
          /* Deine bestehenden checkbox-row Styles bleiben */
      }

      .container_Tooltip {
          position: absolute;
          left: calc(50% + 50px); /* 50px rechts von der Mitte */
          margin: 0; /* Entferne das margin: 30px */
          margin-top: 30px;
      }

      .tooltip-svg-rounded {
          position: static; /* Nicht mehr absolute */
          margin-left: 0; /* Entferne das margin-left: 15px */
          /* Sanfte Bounce-Animation */
          animation: gentleFloat 1.5s ease-in-out infinite;


      }




      .container_Tooltip {
          position: absolute;
          left: calc(50% + 40px);
          margin-top: 20px;
      }

      .container_Tooltip.fade-out {
    opacity: 0;
}

      .tooltip-svg-rounded svg path {
          fill: none !important; /* Keine Füllung */
          stroke: #f44336; /* Rote Umrandung */
          stroke-width: 2; /* Dicke der Umrandung */
      }

      .tooltip-svg-rounded svg text {
          font-family: "Mark Pro", sans-serif;
          fill: #f44336 !important; /* Roter Text */
          font-size: 14px; /* Kleinere Schrift für bessere Lesbarkeit */
      }

      /* Deine bestehenden Styles bleiben unverändert: */
      .tooltip-svg-rounded {
          position: static;
          margin-left: 0;
          animation: gentleFloat 1.5s ease-in-out infinite;
      }

      .tooltip-svg-rounded svg {
          filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
      }

      .tooltip-svg-rounded text {
          dominant-baseline: middle;
          text-anchor: start;
      }

      @keyframes gentleFloat {
          0%, 100% {
              transform: translateY(-50%);
          }
          50% {
              transform: translateY(-55%);
          }
      }









:where(.wp-site-blocks *:focus) {
     outline-width: 0px !important;
     outline-style: none !important;
}

.site-footer {
    padding-block-end: none !important;
    padding-block-start: none !important;
    position: relative;
    display:none !important;
}


#imprintButton .elementor-button {
transition: opacity 0.3s ease; /* Animation hinzufügen */
}

#imprintButton a {
padding-bottom: 0px !important;
}

.elementor-location-footer .elementor-element-61db783 .e-con-inner  {
padding-bottom: 0px !important;
}

.elementor-element-57f4d04 {
margin-bottom: -20px !important;
}


#Button {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}



#people {
     pointer-events: none;
}

#planet {
     pointer-events: none;
     transform: translateY(-100%);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}












.container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}


.star:nth-child(n+40) { /* Alle Sterne ab dem 30. ausblenden */

}



.nav-btn {
  -webkit-user-select: none; /* Safari/Chrome */
 -moz-user-select: none;    /* Firefox */
 -ms-user-select: none;     /* Internet Explorer/Edge */
 user-select: none;         /* Standard */
      border: 4px solid;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.2s;


        height: 65px;
        width: 65px;
        border-radius: 50%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 45px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: none !important;
}





.nav-btn:hover {
color:#FF9B22;
background:none !important
}


.nav-btn.hidden {
  visibility: hidden;
}

.current-date {
  -webkit-user-select: none; /* Safari/Chrome */
 -moz-user-select: none;    /* Firefox */
 -ms-user-select: none;     /* Internet Explorer/Edge */
 user-select: none;         /* Standard */
  font-variant-numeric: tabular-nums;
    font-size: 60px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.5s;
    margin: 0px !important;
}

.current-date:hover {
    color: #FF9B22;
}

.form-section {
    padding: 0px;
}

.input-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.checkbox-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
}

.name-field, .comment-field {
    flex: 1;
    padding: 12px 16px;
    border: 3px solid #dee2e6;
    border-radius: 14px !important;
    font-size: 16px;
    transition: border-color 0.3s;
    border: 4px solid !important;
}

.name-field.attending, .comment-field.attending {
    border-color: #4caf50 !important;
}

.name-field.not-attending, .comment-field.not-attending {
    border-color: #f44336 !important;
}

.name-field:focus, .comment-field:focus {
    outline: none;
}

.name-field.attending:focus, .comment-field.attending:focus {
    border-color: #4caf50 !important;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.name-field.not-attending:focus, .comment-field.not-attending:focus {
    border-color: #f44336 !important;
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

.attendance-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.attendance-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* CHECKBOX MIT NUR ROTATION, KEIN SYMBOL-WECHSEL */
.big-checkmark {
  font-family: "Arial", sans-serif;

    height: 65px;
    width: 65px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Standard wenn CHECKED: Grün/Plus */
    background-color: rgba(76, 175, 80, 0.15);
    border: 3px solid #4caf50;
    color: #4caf50;
}

.big-checkmark::before {
    content: "+";
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(0deg);
    display: inline-block;
}

/* Wenn NICHT CHECKED: Rot/Plus gedreht um 45° */
.attendance-checkbox input:not(:checked) ~ .big-checkmark {
    background-color: rgba(244, 67, 54, 0.15);
    border-color: #f44336;
    color: #f44336;
}

.attendance-checkbox input:not(:checked) ~ .big-checkmark::before {
    content: "+";
    transform: rotate(45deg);
}

.attendance-checkbox:hover .big-checkmark {
    transform: scale(1.05);
}

.attendance-checkbox:hover input:checked ~ .big-checkmark {
    background-color: rgba(76, 175, 80, 0.25);
}

.attendance-checkbox:hover input:not(:checked) ~ .big-checkmark {
    background-color: rgba(244, 67, 54, 0.25);
}

/* SUBMIT-BUTTON MIT STARK AUSGEGRAUTEN FARBEN */
.submit-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    display: block;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    font-family: "Mark Pro", Sans-serif;
    font-weight: 600;
    fill: #FFFFFF;
    border-radius: 100px 100px 100px 100px;
    padding: 60px;

    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px dotted;

    font-size: 16px;
}

.submit-button:disabled {
    color: white;
    cursor: not-allowed;
    border-style: dotted;
    animation: noe;
}

.submit-button:enabled {
    color: white;
    cursor: pointer;
    border-style: solid;
    animation: pulse 3s ease-in-out infinite;
}

/* Stark ausgegraute Farben für disabled State */
.submit-button.attending:disabled {
    background: none;

}

.submit-button.attending:enabled {
    background: #2f8033; /* Volles Grün */
}

.submit-button.attending:enabled:hover {

    background: #FF9B22;
}

.submit-button.not-attending:disabled {
    background: none;
}

.submit-button.not-attending:enabled {
    background: #b1251b; /* Volles Rot */
}

.submit-button.not-attending:enabled:hover {
    background: #FF9B22;
}

.entries-section {
    min-height: 200px;
}

.entries-table {
  margin-top:20px;
    width: 90%;
    margin-left: auto;
margin-right: auto;
padding-bottom: 150px;
}

.entry-row {
  display: flex;
  align-items: center;
  padding: 9px 15px;
  position: relative;
  font-size: 20px;
  font-weight: normal;
      font-weight: 800;
  margin-top: 10px;
border-radius: 14px !important;
  background-color: white;
  transition: all 0.3s;
  border: 3px solid;
}

.entry-row.attending {
    border-color: #4caf50;
}

.entry-row.not-attending {
    border-color: #f44336;
}

.entry-name {
    flex: 0.8;
    margin-right: 20px;
}

.entry-status {
  font-family: "Arial", sans-serif;
    margin-right: 15px;
    font-size: 24px;
    font-weight: bold;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid;
}

.status-plus {
    color: #4caf50;
    border-color: #4caf50;
    background-color: rgba(76, 175, 80, 0.15);
}

.status-minus {
    color: #f44336;
    border-color: #f44336;
    background-color: rgba(244, 67, 54, 0.15);
}

.entry-comment {
    flex: 2;
    padding-left: 20px;
}

#confirmDelete:hover {

background-color: #FF9B22;
}

.delete-btn {
  position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
width: 45px;
height: 45px;
border-radius: 50%;
background: white;
color: #b1251b;
border: none;
cursor: pointer;
font-size: 25px;
font-weight: bold;
opacity: 0;
transition: all 0.2s;
display: flex;
align-items: center;
justify-content: center;
}

.entry-row:hover .delete-btn {
    opacity: 1;
}

.delete-btn:hover {
  color: white;
    background: #FF9B22;
}

.loading-message, .empty-message {
    text-align: center;
    color: #ccc;
    padding: 40px;
    font-size: 16px;
}

.empty-message {
color: #FF9B22;
}

.message-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
}

.message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    max-width: 300px;
    word-wrap: break-word;
    animation: slideIn 0.3s ease-out;
}

.message.error {
    background: #ffebee;
    color: #c62828;
    border-left: 4px solid #c62828;
}

.message.success {
    background: #e8f5e8;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.calendar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-modal {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    min-width: 350px;
}


.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}



.elementor-element-7ba6b30{
 -webkit-user-select: none; /* Safari/Chrome */
 -moz-user-select: none;    /* Firefox */
 -ms-user-select: none;     /* Internet Explorer/Edge */
 user-select: none;         /* Standard */
}


.calendar-nav {
  -webkit-user-select: none; /* Safari/Chrome */
 -moz-user-select: none;    /* Firefox */
 -ms-user-select: none;     /* Internet Explorer/Edge */
 user-select: none;         /* Standard */
    background: none !important;
    color: #034489;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 24px;
}

.calendar-nav:hover {
background: #FF9B22;
color:#FF9B22;
}

.calendar-title {
  -webkit-user-select: none; /* Safari/Chrome */
 -moz-user-select: none;    /* Firefox */
 -ms-user-select: none;     /* Internet Explorer/Edge */
 user-select: none;         /* Standard */
    font-size: 18px;
    font-weight: bold;
}

.calendar-grid { width: 100%; }

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 10px;
}

.calendar-weekdays > div {
    text-align: center;
    font-weight: bold;
    padding: 8px;
    background: none;
    border-radius: 4px;
    font-size: 12px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    -webkit-user-select: none; /* Safari/Chrome */
   -moz-user-select: none;    /* Firefox */
   -ms-user-select: none;     /* Internet Explorer/Edge */
   user-select: none;         /* Standard */
}

.cal-day {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 50%;
    position: relative;
}

.cal-day-normal { color: #999; cursor: default; }
.cal-day-other-month { color: white; cursor: default; }
.cal-day-sunday {
    color: #034489;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}
.cal-day-sunday:hover {
  background: #FF9B22;
color:white;
}
.cal-day-sunday-other { color: white; font-weight: bold; cursor: default; }
.cal-day-selected {
background: #FF9B22;
color: white;
font-weight: bold;
}

.cal-day-selected:hover {  }

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
}

.modal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-delete, .btn-cancel {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-delete {
    background: #f44336;
    color: white;
}

.btn-delete:hover { background: #d32f2f; }

.btn-cancel {
    background: #ccc;
    color: #333;
}

.btn-cancel:hover { background: #FF9B22; }

.hidden { display: none; }

.noHidden { display: block; }

.svg-short { display: none; }
.svg-long { display: block; }




@media (pointer: coarse) and (hover: none) {
    /* Primäre Touchgeräte (Smartphones, Tablets) */
  .delete-btn  {
      opacity: 100;
      width: 35px;
    height: 35px;
  }


  .submit-button {
transition: none;
}










}
























@media screen and (max-width: 480px) {
  /* Dein CSS hier */








  .planetContainer {
      margin-top: -40px !important;
  }




  .calendar-modal {
    border-radius: 32px !important;
    padding: 9px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 30px;
    min-width: 20px !important;
    width: 305px !important;
  }




.name-field, .comment-field {
    border: 3px solid !important;
}

  .submit-button {
transition: none;
}



  .current-date {
    font-size: 30px;
  }


.entry-row {
    padding:0;
    font-size: 16px;
  }

  .nav-btn {
      font-size: 30px;
  }

  .big-checkmark {
font-size: 40px;
height:40px;
width:40px;
  }

  .entry-status {
font-size: 30px;
height:30px;
width:30px;
      }

.form-section {
    margin-top: -20px;
}




  .checkbox-tooltip-row {
    margin: 0;
}


  .submit-button  {
padding: 50px;

  }

  #nameInput {
    margin-left: 8px;
  }

  #commentInput {
    margin-right: 8px;
  }

  .entries-table {
  width: 85% !important;
  padding-bottom: 100px;
  margin-top:70px !important;
  }


  .past-date-message {
    margin-top: 50px;
    margin-bottom: -50px;
      }

  .entries-section {
      margin-top: 80px;
  }

  .delete-btn  {
      opacity: 100;
      width: 35px;
    height: 35px;
  }



  .input-row {
    min-height: 55px;
  }

    .entry-row {
    min-height: 55px;
    font-size: 12px;
    font-weight: bold;
    line-height: 15px;
  }

  .entry-name {
    margin-left: 10px;
    margin-right:10px;
}

.entry-comment {
    margin-left: 0px;
    padding-left:0px;
    padding-right: 50px;
}


.container_Tooltip {
    left: calc(50% + 12px);
        margin-top: 20px;
}

  .tooltip-svg-rounded svg text {
  font-size: 10px;
  }


.svg-short { display: block; }
.svg-long { display: none; }

#startContainer {
padding: 0;
padding-top: 0px;
}

.empty-message{
    padding-top: 0px;
    margin-bottom: -200px;
}


}











/* Fügen Sie diese CSS-Regeln zu Ihrer style.css hinzu oder ersetzen Sie die bestehenden Modal-Styles: */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
    margin: 20px;
}

.modal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.4;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-delete, .btn-cancel {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    min-width: 100px;
}

.btn-delete {
    background: #f44336;
    color: white;
}

.btn-delete:hover {
    background: #d32f2f;
}

.btn-cancel {
    background: #ccc;
    color: #333;
}

.btn-cancel:hover {
    background: #FF9B22;
    color: white;
}

/* Responsive Design für kleinere Bildschirme */
@media (max-width: 480px) {
    .modal-content {
        max-width: 320px;
        padding: 25px 20px;
        margin: 15px;
    }

    .modal-content p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .modal-buttons {
        gap: 10px;
    }

    .btn-delete, .btn-cancel {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 80px;
    }
}





/* KORRIGIERTE Modal-CSS mit höherer Spezifität */
.modal-overlay.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.modal-overlay.noHidden {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
    margin: 20px;
}

.modal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.4;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-delete, .btn-cancel {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    min-width: 100px;
}

.btn-delete {
    background: #f44336;
    color: white;
}

.btn-delete:hover {
    background: #d32f2f;
}

.btn-cancel {
    background: #ccc;
    color: #333;
}

.btn-cancel:hover {
    background: #FF9B22;
    color: white;
}
