/* Modal */
#wneoOverlay {
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.7);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
}
#wneoModal {
    background:#fff;
    padding:20px;
    border-radius:8px;
    text-align:center;
    max-width:320px;
    width:100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
#wneoHeader {
    position: relative;
    height: 30px;
}
#wneoClose {
    position: absolute;
    top: -6px;
    left: 0;
    font-size: 26px;
    cursor: pointer;
    color: #555;
    font-weight: bold;
    line-height: 30px;
}
#wneoModal h4 {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
}
#wneoModal input {
    width:100%;
    padding:10px;
    margin-bottom:10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
#wneoModal button {
    padding:10px 20px;
    background:#a85cf9;
    color:#fff;
    border:none;
    cursor:pointer;
    border-radius: 50px;
    font-size: 16px;
    transition: background 0.3s ease;
}
#wneoModal button:hover {
    background:#9445e0;
}

/* Admin table tweaks */
#wneoTable tr {
    border-bottom: 1px solid #ddd;
}
#wneoTable tr:nth-child(even) {
    background-color: #f9f9f9;
}
