:root {
    --base: #F5F6FA;
    --btn: #2E63BF;
    --btnhover: #26529E;
    --btnactive: #16305C;
    --txt:#1A1A1A;
    --error:#CC334D;
}
.login-ui .login-dialog .logo {
    background-image: url('app/ext/tempnamespace/images/logo-placeholder.png');
	width: 9em;
	-webkit-background-size: 9em auto;
}
div.login-ui {
	background: #666;
	background-color: #666;
}
.login-ui .login-dialog .version .app-name {
	display: none;
}
.login-ui .login-dialog {
	background-color: var(--base);
}
.button {
	display: none;
}

a.button, button, input[type=submit] {
    -webkit-appearance: none;
    text-decoration: none;
    background-color: var(--btn);
    border: 1px solid rgba(0, 0, 0, .4);
    color: #fff;
    text-shadow: -1px -1px rgba(0, 0, 0, .3);
    font-size: 1em;
    font-weight: 700;
    font-family: Carlito, FreeSans, Helvetica, Arial, sans-serif;
    padding: .35em 1em;
    min-width: 5em;
    margin: .25em;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
	border-radius: 6px;
}

a.button:active, button:active, input[type=submit]:active {
    background-color: var(--btnactive);
    box-shadow: inset 1px 1px .25em rgba(0, 0, 0, .25), -1px -1px .25em rgba(0, 0, 0, .25), 1px 1px .25em hsla(0, 0%, 100%, .25);
}

a.button:hover, button:hover, input[type=submit]:hover {
    background-color: var(--btnhover);
}

a.button.danger, button.danger {
    background: var(--btn);
}

a.button.danger:active, button.danger:active {
    background: var(--btnactive);
}

a.button.danger:hover, button.danger:hover {
    background: var(--btnhover);
}

.header {
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .125);
    background: var(--base);
    margin-bottom: 1em;
    margin-top: 0;
    border-top: none;
    width: 100%;
    display: -ms-flexbox;
    -ms-flex-align: stretch;
    -ms-flex-direction: row;
    display: -moz-box;
    -moz-box-align: stretch;
    -moz-box-orient: horizontal;
    display: -webkit-box;
    -webkit-box-align: stretch;
    -webkit-box-orient: horizontal;
    display: -webkit-flex;
    -webkit-align-items: stretch;
    -webkit-flex-direction: row;
    display: flex;
    align-items: stretch;
    flex-direction: row;
}

table.sorted th {
    background: var(--base);
    font-weight: 400;
	color: var(--txt);
}
.client-status-modal guac-modal {
    position: absolute;
    background-color: #F4F5F9;
}
.client-status-modal .notification {
    background: #FFFFFF;
    color: var(--txt);
    width: 30%;
    max-width: 30%;
    padding: 1em;
    text-align: center;
    border: none;
    margin: 0 auto;
    display: block;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}

.client-status-modal .notification.error {
    background: #FFFFFF;
    color: var(--error);
    border: 0.1px solid;
    border-color:var(--error);
}

.login-ui .login-dialog {
    background-color: white;
    border-radius: 16px;
}/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

/* Label/tag denoting the user that shared a connection */
.jdbc-share-tag {

    background: #0095ff;
    padding: 0.25em;

    -moz-border-radius:    0.25em;
    -webkit-border-radius: 0.25em;
    -khtml-border-radius:  0.25em;
    border-radius:         0.25em;

    color: white;
    font-size: 0.75em;
    font-weight: bold;

}
