.ipl-dbbf3853-list {
    display: flex;
    flex-direction: column;
}

.ipl-dbbf3853-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    gap: 12px;
}

.ipl-dbbf3853-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.ipl-dbbf3853-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ipl-dbbf3853-icon svg {
    fill: currentColor;
}

/* Overlay */
.ipl-dbbf3853-popup-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.admin-bar .ipl-dbbf3853-popup-overlay {
    top: var(--wp-admin--admin-bar--height, 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar .ipl-dbbf3853-popup-overlay {
        top: 46px;
    }
}

.ipl-dbbf3853-popup-overlay.ipl-dbbf3853-visible {
    opacity: 1;
}

.ipl-dbbf3853-popup-overlay.ipl-dbbf3853-fade-out {
    opacity: 0;
}

/* Modal */
.ipl-dbbf3853-popup-content {
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.ipl-dbbf3853-popup-overlay.ipl-dbbf3853-visible .ipl-dbbf3853-popup-content {
    transform: scale(1);
}

.ipl-dbbf3853-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #555;
    padding: 0;
}

.ipl-dbbf3853-popup-close:hover {
    color: #000;
}

.ipl-dbbf3853-popup-heading {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #111;
    padding-right: 24px;
}

.ipl-dbbf3853-popup-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}
