.pro-modal {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.5);

    display: none;

    justify-content: center;

    align-items: center;

}


.pro-modal-content {

    background-color: white;

    padding: 20px;

    border-radius: 12px;

    width: 300px;

    text-align: center;

}


.close-button {

    background-color: red;

    color: white;

    border: none;

    border-radius: 8px;

    padding: 10px 20px;

    margin-top: 15px;

    cursor: pointer;

}