/* Custom buttons row - side by side */
.poka-custom-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.poka-custom-buttons .btn {
    flex: 1;
    text-align: center;
}

/* Popup overlay */
.poka-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.poka-popup-overlay.active {
    display: flex;
}
.poka-popup-modal {
    background: #fff;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
}
.poka-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    line-height: 1;
}
.poka-popup-close:hover {
    color: #000;
}
.poka-popup-image {
    margin-bottom: 20px;
    text-align: center;
}
.poka-popup-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
.poka-popup-content {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Popup buttons row - side by side */
.poka-popup-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.poka-popup-buttons .btn {
    flex: 1;
    text-align: center;
}
