/* Hide popup by default */
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show popup when active */
.popup-container.active {
    visibility: visible;
    opacity: 1;
}


/* Popup Box - Increase Width & Height */
.popup {
    background: rgba(30, 30, 30, 0.95);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    width: 400px;
    min-height: 350px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Space out content */
}

/* Export format options aligned left */
form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
    justify-content: flex-start;
}

/* Increase button spacing */
.popup-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}


.popup-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

#cancelExport {
    background: #444;
    color: white;
    border: 1px solid #444;
    padding: 8px 16px;
    border-radius: 1px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Export Button Styling */
#confirmExport {
    background: #444;
    /* Background color */
    color: white;
    border: 1px solid #444;
    /* Border color */
    padding: 8px 16px;
    border-radius: 1px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Hover Effect */
#confirmExport:hover {
    background: #01a5bf;
    /* Change background on hover */
    color: #fff;
    /* Text color */
}