.robonobo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.robonobo-modal-overlay {
    position:absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.5);
}

.robonobo-modal-content {
    position:absolute;
    top:50%; left:50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.robonobo-form-field input {
	width: 100%;
}

.robonobo-password-wrapper {
    position: relative;
}

.robonobo-settings-inline {
    display: inline-block;
}

.robonobo-password-wrapper input {
    padding-right: 35px;
    box-sizing: border-box;
}

.robonobo-password-wrapper .toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #555;
}

.robonobo-password-wrapper .toggle-password:hover {
    color: #000;
}





.robonobo-address-suggestions {
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    list-style: none;
    margin: 5px 0 0 0;
    padding: 0;
    background: #fff;
    position: absolute;
    width: calc(100% - 20px);
    z-index: 9999;
    display: none;
}

.robonobo-address-suggestions li {
    padding: 5px 10px;
    cursor: pointer;
}

.robonobo-address-suggestions li:hover {
    background: #f0f0f0;
}





.robonobo-company-suggestions {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    border: 1px solid #ccc;
    background: #fff;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    z-index: 9999;
}

.robonobo-company-item {
    padding: 6px 10px;
    cursor: pointer;
}

.robonobo-company-item:hover {
    background-color: #f0f0f0;
}










