/* The Modal (background) */
.modal_confirmation_modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 2;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
    animation: fadeIn 0.5s;
}

/* Modal Content */
.modal_confirmation_content {
    position: fixed;
    background-color: #fefefe;
    margin: -12% 0% 0% 32%; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
    max-width: 600px;
    top: -100%; 
    animation: slideDown 0.5s forwards;
}

/* The Close Button */
.close_confirmation_modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close_confirmation_modal:hover,
.close_confirmation_modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.save_btn {
    padding: 10px 20px;
    background-color: green;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.delete_btn {
    padding: 10px 20px;
    background-color: red;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #317da5;
}


@keyframes slideDown {
    from {top: -100%;}
    to {top: 50%;}
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

