.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup-content {
    width: 400px;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .popup-content img {
        max-width: 100%;
        margin: 10px 0;
    }

    .popup-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .popup-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .popup-content button {
        margin: 0 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

#acceptBtn {
    padding: 10px;
    background-color: #0070ba;
    color: white;
}

#declineBtn {
    padding: 10px;
    background-color: #0070ba;
    color: white;
}
