#wls-cookie-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999999;
    font-family: Arial, sans-serif;

    opacity: 0;
    transform: translateY(30px) scale(0.96);
    pointer-events: none;
    transition: opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* sichtbar Zustand */
#wls-cookie-banner.show {
    opacity: 1;
    transform: translateY(0px) scale(1);
    pointer-events: auto;
}

.wls-box {
    width: 300px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(12px);
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.08);
}

.wls-text {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
    opacity: 0.9;
}

.wls-buttons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.wls-buttons button {
    padding: 8px 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    transition: transform 0.15s ease;
}

.wls-buttons button:active {
    transform: scale(0.96);
}

#wls-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

#wls-accept {
    background: white;
    color: black;
}