html {
    font-family: Arial;
    text-align: center;
    font-size: 30px;
}

html, body, #map {
    height: 100%;
    width: 100vw;
    font-size: 25px;
}

body {
    padding: 0;
    margin: 0;
}

.popup {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 1;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    z-index: 9999;
    font-family: sans-serif;
    font-size: 16px;
}

.popup.success {
    background-color: #4caf50;
}

.popup.error {
    background-color: #f44336;
}

.popup.fade-out {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
}

.fixed-box {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 375px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: sans-serif;
    overflow: hidden;
    z-index: 9999;
}

.box-header {
    background-color: #007BFF;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    font-size: 20px;
    transition: transform 0.5s ease;
}

.box-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.fixed-box.open .box-content {
    max-height: 500px; /* Genug Platz für den Inhalt */
    padding: 15px;
}