/* cmsms stylesheet: termine-kalender-style modified: Freitag, 10. April 2026 11:02:50 */
.calendar-wrapper {
      display: inline-block;
      position: relative;
    }

    .calendar-sheet {
      width: 180px;
      border-radius: 12px;
      overflow: hidden;
      background: #fffdf8;
      box-shadow: 0 8px 18px rgba(0,0,0,0.15);
      margin-top: 16px;
    }

      .calendar-top {
      background: #A7AB56;
      color: white;
      padding: 16px 8px 8px;
      font-weight: bold;
      letter-spacing: 1px;
      margin-top: 10px;
    }

    .calendar-day {
      font-size: 60px;
      font-weight: bold;
      color: #333;
    }

    .paper {
      background: linear-gradient(180deg, #fffdf8 0%, #f3f3f3 100%);
    }

    /* Monat */
    .calendar-footer {
      color: #666;
    }

    /* Abgerissene Kante */
    .tear {
      position: relative;
      height: 14px;
    }

    .tear::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 20px;
      bottom: 0;
      left: 0;
      background:
        radial-gradient(circle at 10px -6px, transparent 12px, #fffdf8 13px);
      background-size: 20px 20px;
      background-repeat: repeat-x;
    }

    .shadow-edge {
      height: 6px;
      background: linear-gradient(to bottom, rgba(0,0,0,0.12), transparent);
    }

    /* Details */
   .calendar-details h3 {
      color: #A7AB56;
    }
/* cmsms stylesheet: accordion-style modified: Freitag, 30. Januar 2026 13:56:01 */
.accordion-header {
/*  border-style: solid;
  border-color: rgba(154, 159, 61, 0.87);*/
  font-size: 20px;
  color: #6f6f6f;
}
.accordion-header::after {
 content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(154, 159, 61, 0.87);
  color: #fff;
  font-size: 20px;
  font-weight: bold;

   float: right;
}
.accordion-header.accordion-open::after {
content: "-";
}
