.wes-modal {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.wes-modal-inner {
    background: #fff;
    padding: 20px;
    max-width: 600px;
    width: 100%;
    border-radius: 6px;
    position: relative;
}

.wes-modal-close {
    position: absolute;
    right: 10px;
    top: 8px;
    border: none;
    background: transparent;
    font-size: 22px;
}

.wes-form-message {
    margin-top: 10px;
    color: #0073aa;
}