/* Overlay for the popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px; /* Add padding to ensure proper spacing on small screens */
    box-sizing: border-box; /* Include padding in total width/height */
}

/* Content of the popup */
.popup-content {
    position: relative;
    background: #fff;
    padding: 20px; /* Inner padding for content */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%; /* Make it responsive */
    text-align: center;
}

/* Close button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    background: #f0f0f0;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-close:hover {
    background: #ccc;
    color: #fff;
}

/* Video styling */
.popup-content video {
    width: 100%; /* Responsive width */
    height: auto;
    border-radius: 12px;
}
