.overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #c0c0c0;
    z-index: 900;
    opacity: 0.5;
}

.dialog {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80vw;
    padding: 20px;
    background-color: white;
    z-index: 910;
    background-color: red;
    box-shadow: 5px 5px 5px #c0c0c0;
}

.dialogButton {
    all: unset;
    position: relative;
    top: 0;
    margin-top: 20px;
    background-color: white;
    color: black;
    padding: 5px 20px 5px 20px;
    cursor: pointer;
    box-shadow: 2px 2px 4px #909090;
}

.dialogButton:hover {
    top: -4px;
    box-shadow: none;
}

.dialogTitle {
    font-weight: bold;
    color: white;
}

.dialogText {
    margin-top: 20px;
    margin-bottom: 20px;
    color: white;
}

/* .................................................................................................................. */

.freiePlaetze {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}
/* Viel Plätze - grün */
.gruen {
    background-color: #155724;
    color: #ffffff;
}
/* Mittlere Anzahl - gelb */
.gelb {
    background-color: #FF9900;
    color: #CC3300;
}
/* Wenige Plätze - rot */
.rot {
    background-color: #721c24;
    color: #FF9900;
}