.kk-consent-container {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kk-consent-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.kk-consent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Leichte Abdunklung damit man den Button sieht */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.kk-consent-container.map-loaded .kk-consent-overlay {
    opacity: 0;
    pointer-events: none;
    display: none; /* Ganz ausblenden nach Transition */
}

.kk-consent-btn {
    background:hsl(0, 0%, 94%);
    color: #333;
    border: none;
    padding: 15px 20px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

.kk-consent-btn .kk-consent-btn-text {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: hsl(0, 0%, 6%);
}

.kk-consent-btn small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: hsl(0, 0%, 36%);
}

.kk-consent-btn:hover {
    background:hsl(0, 0%, 16%);
}
.kk-consent-btn:active {
    background:hsl(103, 95%, 26%);
}


.kk-consent-btn:hover .kk-consent-btn-text, .kk-consent-btn:hover small {
    color: hsl(0, 0%, 94%);
}

.kk-privacy-link {
    position: absolute;
    bottom: 5px;
    right: 6px;
    color: #fff;
    font-size: 11px;
    z-index: 3;
    text-decoration: underline;
    font-weight: normal;
}