#agenda .details p {
    word-break: break-word;
    overflow-wrap: break-word;
    /* Optional: Wenn du lieber abschneidest statt umbrechst:
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    */
}


#agenda .event {
    border: none;
    min-width: 0; /* wichtig im Grid-Context! */
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: center;
    position: relative;
}

#agenda .event:hover {
    /* background-color: rgb(184, 184, 184); */
    /* filter: invert(1); */
    background-color: none;
}

#ncembediframe {
    width: 100%;
    height: 70vh;
}


#example {
    display: grid;
    grid-template-columns: 45% auto 45%;
}

#discription {
    width: 70%;
    margin: auto;
}

.code {
    background-color: lightgrey;
    border-radius: 20px;
    font-family: monospace;
    margin-left: 50px;
    margin-right: 50px;
    padding: 20px;
}

#agenda h2 {
    text-align: center;
    text-decoration: underline;
}

#agenda img {
    max-width: 100%;
    max-height: 100%;
}

.events {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.spalten {
    display: grid;
    grid-template-columns: 80% auto;
}

#pfeil {
    vertical-align: middle;
    font-size: 6em;
    font-weight: bolder;
    text-align: center;

}

details summary {
  list-style: none;       /* entfernt das Standard-Pfeilsymbol */
}

details summary::-webkit-details-marker {
  display: none;          /* entfernt das Pfeilsymbol in WebKit-Browsern (Chrome, Safari) */
}

#agenda details {
    height: 100%;
}


.eventTitle {
    /*! color: red; */
    font-size: 3.3rem;
    text-transform: uppercase;
    padding-top: 0.5rem;
    position: relative;
}

.eventSpecs {
    /*! color: blue; */
    font-size: 2rem;
    line-height: 2rem;
    padding-top: 0.5rem;
}

.eventInfo {
    font-size: 2rem;
    line-height: 2rem;
    padding-top: 0.5rem;
}

.event:hover {
    cursor: pointer;
}


#editEvent {
    background-color: lightgray;
    padding: 3px;
    border-radius: 5px;
    font-size: 2rem;
    width: fit-content;
    margin: auto;
    border: 1px solid black;
}