/* POPUP OVERLAY */
#popupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* POPUP BOX */
.popupBox {
    background: #fff;
    padding: 25px;
    width: 360px;
    border-radius: 8px;
    position: relative;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popupBox h3 {
    text-align: center;
    margin-bottom: 15px;
}

.popupBox input,
.popupBox select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.popupBox button {
    width: 100%;
    padding: 10px;
    background: #004aad;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.popupBox button:hover {
    background: #003080;
}

.closeBtn {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 22px;
    cursor: pointer;
}
