.ecm-calendar-dropdown {
    position: relative;
    margin: 1em 0;
}

.ecm-calendar-dropdown-button {
    display: flex;
    align-items: center;
	justify-content: space-between; /* Verteilt den Inhalt gleichmäßig */
    width: 100%; /* Stellt sicher, dass der Button die volle Breite nutzt */
    padding: 0.5em 0;
    border: 1px solid;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}

.ecm-calendar-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5em;
	margin-left:1em;
}

.ecm-calendar-dropdown-button-text {
    flex-grow: 1;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.ecm-calendar-dropdown-button-icon {
    width: 10px;
    height: 7px;
    transition: transform 0.2s;
	margin-left: auto; /* Schiebt das Icon ganz nach rechts */
	margin-right:1em;
}

.ecm-calendar-dropdown-button[aria-expanded="true"] .ecm-calendar-dropdown-button-icon {
    transform: rotate(180deg);
}

.ecm-calendar-dropdown-content {
    position: absolute;
    z-index: 10;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 0.25em;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.ecm-calendar-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ecm-calendar-dropdown-list-item {
    padding: 0;
    margin: 0;
}

.ecm-calendar-dropdown-list-item-link {
    display: block;
    padding: 0.75em 1em;
    text-decoration: none;
    color: #333;
}

.ecm-calendar-dropdown-list-item-link:hover {
    background-color: #f5f5f5;
}