.select_one{
    float:right;
    line-height: 28px;
}
.wrapper .webix_list_item {
   	word-wrap: break-word
}
    
body {
    font-family: Arial, sans-serif;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

#login-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#login-form h2 {
    margin-top: 0;
}

#login-form label {
    display: block;
    margin: 10px 0 5px;
}

#login-form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

#login-form button {
    width: 100%;
    padding: 10px;
    background: #007BFF;
    border: none;
    color: white;
    border-radius: 3px;
    cursor: pointer;
}

#login-form button:hover {
    background: #0056b3;
}