/* Overlay (dunkler Hintergrund) */
#klaro-overlay {
    position: fixed;
    z-index: 2147483646;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
}

/* Das Popup-Fenster */
.klaro-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    width: 450px;
    max-width: 90%;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    font-family: Arial, sans-serif;
    z-index: 2147483647 !important;
    text-align: left;
}

/* Titel */
.klaro-banner h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

/* Text */
.klaro-banner p {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
}

/* Button Container */
.klaro-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Buttons */
.klaro-banner button {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    border: none;
}

/* Primär */
.klaro-accept {
    background: #0D2A78;
    color: #fff;
}

/* Sekundär */
.klaro-decline {
    background: #ccc;
    color: #333;
}