/* Container */
.checklist-table__column {
    padding: 1rem;
}

/* Icon-Container */
.wrap-icon__icon {
    position: relative;
    display: inline-block;
}

/* Toggle Button */
.info-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* Popover */
.popover {
    position: absolute;
    margin-top: 0.25rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-width: 220px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 3;
}

/* Popover sichtbar */
.popover.show {
    opacity: 1;
    visibility: visible;
}

/* Overlay / Lightbox */
.popover-bg {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.popover-bg.active {
    display: block;
}

/* Optional Icon-Styling */
.icon-info {
    font-weight: bold;
    /*color: #007bff;*/
}