#ki-label {
    position: absolute;
    top: 120px; /* statt 80px – weiter unter die Navi */
    right: 20px;
    z-index: 999;
}

#ki-label .ki-label-inner {
    width: 200px;         /* größerer Kreis */
    height: 200px;        /* größerer Kreis */
    padding: 30px;        /* mehr Innenabstand */
    background: #f7d94c;  /* Gelb */
    color: #000000;       /* Schwarze Schrift */
    border-radius: 50%;
    text-align: center;
    font-size: 16px;    /* größere Schrift */
    line-height: 1.25;    /* harmonischer */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    font-weight: 700;
}

/* X-Schließen-Button */
#ki-label .ki-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 26px;
    height: 26px;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Dark Mode: X invertieren */
body.darkmysite_dark_mode_enabled #ki-label .ki-close {
    background: #ffffff;
    color: #000000;
}

/* Hover-Effekt */
#ki-label .ki-close:hover {
    transform: scale(1.1);
}


/* Mobile – kleinerer Kreis, aber harmonisch */
@media (max-width: 768px) {
    #ki-label {
        top: 110px;
        right: 10px;
    }
    #ki-label .ki-label-inner {
        width: 100px;
        height: 100px;
        padding: 10px;
        font-size: 9px;
    }
}
body.darkmysite_dark_mode_enabled #ki-label .ki-label-inner {
    background: #f7d94c !important;
    color: #000000 !important;
}