#hostcontrolconfig table .fieldlabel {
    width: 200px;
}
#hostcontrolconfig table td {
    padding: 2px 5px;
    text-align: left;
    vertical-align: top;
}
#hostcontrolconfig table td li {
    list-style: circle;
}
#hostcontrolconfig table td a {
    text-decoration: underline;
}
.view-ips {
    padding-top: 6px;
    vertical-align: top;
    max-width: 10px;
}
.manage-ips, .delete-host {
    vertical-align: top;
}
.add-ip-rs {
    font-weight: bold;
    padding: 0 5px;        
}
.extra-ips {
    padding: 0 5px;        
    white-space: nowrap;
}
.extra-ips:hover, .add-ip-rs:hover {
    text-decoration: none;
}
.ip-version {
    min-width: 175px;
}


.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -100px;
    margin-top: -100px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}