/* Benachrichtigungsstil */
.incon-event-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 16px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(-20px);
    opacity: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.incon-event-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.incon-event-notification .close {
    margin-left: 15px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

/* Farben für verschiedene Meldungstypen */
.incon-event-notification.success {
    background-color: #4CAF50;
    color: white;
}

.incon-event-notification.error {
    background-color: #F44336;
    color: white;
}

.incon-event-notification.info {
    background-color: #2196F3;
    color: white;
}

/* Button-Zustände */
.anmelde_button {margin-top: 0!important;}
.incon-register-button.processing,
.incon-unregister-button.processing {
    opacity: 0.7;
    cursor: wait;
}

.event-status-message {
    margin-bottom: 20px;
}

.event-status-message .status-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 16px;
    color: #282828;
}
.disabled.anmelde_button {
    background: #EFEFEF;
    border: #EFEFEF;
}
.disabled.anmelde_button span{
    color: #282828 !important;
}
.disabled.anmelde_button:hover {
    background: #EFEFEF;
    border: #EFEFEF;
}

.incon_event_overview .anmelde_button {
    width: fit-content;
}

.event-status-message .status-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #007fb2;
    color: white;
    text-align: center;
    line-height: 21px;
    margin-right: 13px;
    font-weight: bold;
    position: relative;
}
.event-status-message .status-icon:before {
    content: "i";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
    font-style: normal;
    font-family: 'Outfit';
}

.event-status-message .status-disabled {
    background-color: #f5f5f5;
    color: #282828;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
    font-size: 18px;
}

/* Variations für verschiedene Status-Typen */
.event-status-message .error .status-icon {
    background-color: #e74c3c;
}

.event-status-message .warning .status-icon {
    background-color: #f39c12;
}

.event-status-message .info .status-icon {
    background-color: #3498db;
}

.event-status-message .success .status-icon {
    background-color: #2ecc71;
}

/*Übersichtsbox Icons*/
.event-list-infos .event-list-date{
    position: relative;
}
.event-list-infos .event-list-date p,
.event-list-infos .event-list-time p,
.event-list-infos .event-list-location p,
.event-list-infos .event-list-deadline p,
.event-list-infos .event-list-maximale-teilnehmer p,
.event-more-info .event-more-info-item p{
    padding-left: 33px;
    margin: 5px 0 5px 0;
}
.event-list-infos .event-list-date::before{
    position: absolute;
    background-image: url('img/datum.svg');
    content: ' ';
    width: 22px;
    height: 22px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 4px;
}
.event-list-infos .event-list-time::before{
    position: absolute;
    background-image: url('img/uhrzeit.svg');
    content: ' ';
    width: 22px;
    height: 22px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 4px;
}
.event-list-infos .event-list-location::before{
    position: absolute;
    background-image: url('img/event.svg');
    content: ' ';
    width: 22px;
    height: 22px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 4px;
}
/*Good to know icons*/
.event-list-infos .event-list-deadline::before{
    position: absolute;
    background-image: url('img/deadline_anmeldung.svg');
    content: ' ';
    width: 22px;
    height: 22px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 4px;
}
.event-list-infos .event-list-maximale-teilnehmer::before{
    position: absolute;
    background-image: url('img/max_teilnehmer.svg');
    content: ' ';
    width: 22px;
    height: 22px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 4px;
}
/*Aufzählung*/
.event-more-info{margin-bottom: 40px;}
.event-more-info .event-more-info-item::before{
    position: absolute;
    background-image: url('img/liste_gruen.svg');
    content: ' ';
    width: 20px;
    height: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 5px;
}