.bhu-popup-overlay-3f24f3a7 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.bhu-popup-overlay-3f24f3a7.is-visible {
    opacity: 1;
    visibility: visible;
}

body.admin-bar .bhu-popup-overlay-3f24f3a7 {
    top: var(--wp-admin--admin-bar--height, 32px);
    height: calc(100% - var(--wp-admin--admin-bar--height, 32px));
}

@media screen and (max-width: 782px) {
    body.admin-bar .bhu-popup-overlay-3f24f3a7 {
        top: 46px;
        height: calc(100% - 46px);
    }
}

.bhu-popup-modal-3f24f3a7 {
    background: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.4s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.bhu-popup-overlay-3f24f3a7.is-visible .bhu-popup-modal-3f24f3a7 {
    transform: scale(1);
}

.bhu-popup-close-x-3f24f3a7 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 2;
}

.bhu-popup-close-x-3f24f3a7:hover {
    background: rgba(255, 255, 255, 0.4);
}

.bhu-popup-header-3f24f3a7 {
    background: linear-gradient(135deg, #005daa, #003b6d);
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    flex-shrink: 0;
}

.bhu-popup-title-3f24f3a7 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: bold;
    color: #fff;
}

.bhu-popup-subtitle-3f24f3a7 {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

.bhu-popup-content-3f24f3a7 {
    padding: 25px 30px;
    overflow-y: auto;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.bhu-popup-list-3f24f3a7 {
    margin: 15px 0;
    padding-left: 20px;
}

.bhu-popup-list-3f24f3a7 li {
    margin-bottom: 8px;
}

.bhu-popup-closing-3f24f3a7 {
    margin-top: 20px;
}

.bhu-popup-footer-3f24f3a7 {
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid #eee;
    background: #fafafa;
    flex-shrink: 0;
}

.bhu-popup-btn-3f24f3a7 {
    background: #005daa;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.bhu-popup-btn-3f24f3a7:hover {
    background: #003b6d;
    transform: translateY(-2px);
}
