#pk-video-popup {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 999999;
}

.pk-popup-hidden {
    display: none !important;
}

.pk-popup-box {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    width: 260px;
    max-width: 90vw; /* responsive */
}

.pk-popup-box video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.pk-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 10px;
}

.pk-actions button {
    border: none;
    background: #111;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    flex: 1; /* equal width on mobile */
}

/* ------------------------------
   Mobile Responsive Adjustments
   ------------------------------ */

@media (max-width: 480px) {

    #pk-video-popup {
        bottom: 10px;
        right: 10px;
        left: 10px;   /* center on mobile */
    }

    .pk-popup-box {
        width: 100%;
        max-width: 100%;
        padding: 8px;
    }

    .pk-actions button {
        font-size: 13px;
        padding: 8px;
    }
}

/* Tablet adjustments */
@media (max-width: 768px) {
    #pk-video-popup {
        bottom: 14px;
        right: 14px;
    }

    .pk-popup-box {
        width: 240px;
        max-width: 80vw;
    }
}
