/* ============================================================
   THEME VULCAIN ENGINEERING – Guacamole 1.6
   ============================================================ */

:root {
    --vulcain-blue: #005BBB;
    --vulcain-blue-dark: #003C7E;
    --vulcain-gray: #F4F4F4;
    --vulcain-text: #444444;
    --radius: 8px;
}

/* --- PAGE LOGIN --- */
.login-ui {
    background: var(--vulcain-gray) !important;
}

.login-dialog {
    background: white !important;
    border-radius: var(--radius) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
    padding: 40px !important;
    max-width: 400px !important;
}

/* Logo Vulcain */
.login-dialog .logo {
    width: 160px !important;
    height: 60px !important;
    background-image: url("app/ext/tempnamespace/images/logo-placeholder.png") !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center !important;
    margin: 0 auto 25px auto !important;
}

.login-ui .login-dialog h1 {
    font-size: 22px !important;
    font-weight: 500 !important;
    color: var(--vulcain-text) !important;
}

/* Champs */
.login-ui input[type=text],
.login-ui input[type=password] {
    border-radius: var(--radius) !important;
    border: 1px solid #cccccc !important;
    padding: 12px !important;
    font-size: 15px !important;
}

.login-button {
    background: var(--vulcain-blue) !important;
    border: none !important;
    border-radius: var(--radius) !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 12px !important;
    font-size: 16px !important;
    width: 100% !important;
}

.name:hover {
	var(--vulcain-blue-dark)
}

a.button:hover {
	color: var(--vulcain-gray) !important;
	background-color: #5a5a5a;
}
a.button:active {
	color: var(--vulcain-gray) !important;
	background-color: gray;
}
a.button {
	background-color: #3c3c3c4a;
	text-shadow: none;
}

.header .filter input {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    border-radius: 0;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, .125);
    background-color: white;
}

.login-button:hover {
    background: var(--vulcain-blue-dark) !important;
}

/* --- HEADER / MENU PRINCIPAL --- */
.header {
    background: var(--vulcain-blue) !important;
    color: white !important;
    border-bottom: 3px solid var(--vulcain-blue-dark) !important;
}

.header .logo {
    background-image: url("app/ext/tempnamespace/images/logo-placeholder.png") !important;
    width: 160px !important;
    height: 50px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* --- MENUS / TABS --- */
.menu .menu-titlebar {
    background: var(--vulcain-blue) !important;
    color: white !important;
}

.menu .menu-item:hover {
    background: var(--vulcain-blue-dark) !important;
    color: white !important;
}

/* --- BOUTONS PRINCIPAUX --- */
button,
.action {
    background: var(--vulcain-blue) !important;
    color: white !important;
    border-radius: var(--radius) !important;
    border: none !important;
}

button:hover,
.action:hover {
    background: var(--vulcain-blue-dark) !important;
}

/* --- TABLEAUX --- */
.table thead {
    background: var(--vulcain-blue) !important;
    color: white !important;
}

.table tbody tr:hover {
    background: rgba(0,91,187,0.1) !important;
}

/* --- LIENS --- */
a {
    color: var(--vulcain-blue) !important;
}
a:hover {
    color: var(--vulcain-blue-dark) !important;
}/*
 * 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;

}
/*
 * 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.
 */

.login-ui .sso-providers {

    padding: 0.25em 0.5em;
    position: absolute;
    bottom: 0;
    left: 0;

}

.sso-providers ul {
    list-style: none;
}

.sso-providers ul, .sso-providers li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.sso-providers li::before {
    content: ' / ';
}

.sso-providers li:first-child::before {
    display: none;
}
