/* Den Hintergrund abdunkeln oder weichzeichnen, wenn Klaro offen ist */
body.klaro .cm-wrapper {
    background-color: rgba(0, 0, 0, 0.9) !important; /* Fast schwarzer Hintergrund */
    backdrop-filter: blur(10px); /* Macht die Seite dahinter unsichtbar/verschwommen */
}

/* Verhindern, dass man am Modal vorbeiscrollt */
body.klaro {
    overflow: hidden !important;
}


.klaro-floating-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #333; /* Dunkles Design, passt fast überall */
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999; /* Damit er über anderen Elementen liegt */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.klaro-floating-button:hover {
    transform: translateY(-3px);
    background-color: #555;
}

.klaro-floating-button svg {
    width: 28px;
    height: 28px;
}

/* Optional: Verstecken, wenn das Klaro-Modal bereits offen ist */
body.klaro .klaro-floating-button {
    display: none;
}