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

}
/* Remote Modern Theme - clean, readable restyle for Apache Guacamole */
html, body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
                 "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC",
                 Roboto, Helvetica, Arial, sans-serif;
    background: #f4f6f9;
    color: #1f2937;
}

/* ---- Login ---- */
.login-ui {
    background: linear-gradient(135deg, #16294d 0%, #2f6fed 100%);
}
.login-dialog {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}
.login-dialog .app-name {
    color: #2f6fed;
    font-weight: 700;
}
.login-dialog input[type=text],
.login-dialog input[type=password] {
    border: 1px solid #d7dce5;
    border-radius: 6px;
    padding: 0.55em 0.8em;
}
.login-dialog .buttons input[type=submit] {
    background: #2f6fed;
    border: 0;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
}
.login-dialog .buttons input[type=submit]:hover {
    background: #1f56c8;
}

/* ---- Main UI chrome ---- */
.header,
.menu-title {
    background: #fff;
    border-color: #e5e7eb;
}

/* ---- Home / connection cards ---- */
.connection-list .home-connection,
.home-connection {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}
.home-connection:hover {
    border-color: #2f6fed;
    box-shadow: 0 4px 14px rgba(47,111,237,0.12);
}
.connection-list .home-connection .caption {
    font-weight: 600;
    color: #1f2937;
}

/* ---- Buttons & links ---- */
a {
    color: #2f6fed;
}
button,
input[type=submit],
.button {
    border-radius: 6px;
}

/* ---- General dialogs ---- */
.guac-menu,
.menu-dropdown,
.menu-content {
    border-radius: 8px;
}
