/* styles.css */
.dot-menu {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Ändern Sie 'right' zu 'left' */
    z-index: 1000;
    
}

.dot-menu-button {
    background-color: rgb(168, 147, 102);
    border: none;
    border-radius: 100%;
    padding: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200%;
}

.dot {
    width: 10px; /* Stellen Sie sicher, dass Höhe und Breite gleich sind */
    height: 10px; /* Stellen Sie sicher, dass Höhe und Breite gleich sind */
    background-color: #fff;
    border-radius: 50%; /* Macht den Punkt kreisförmig */
    margin: 2px 0;
}

.dot-menu-content {
    display: none;
    position: absolute;
    bottom: 50px;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.dot-menu-content.show {
    display: block;
}

.dot-menu-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #000;
}

.dot-menu-item:hover {
    background-color: #f1f1f1;
}

.dot-menu-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}