.wd-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.wd-modal-open {
    display: block;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.wd-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 40%;
}

.wd-modal-header {
    padding: 2px 16px;
}

.wd-modal-body {
    padding: 2px 16px;
}

.wd-modal-footer {
    padding: 2px 16px;
    display: flex;
    justify-content: end;
}

.wd-modal-footer button {
    margin-left: 1rem;
}

.wd-modal-close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.wd-modal-close:hover,
.wd-modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.wd-modal-title {
    margin: 0;
}