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

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

#idle-warning {

    position: absolute;
    right: 0.25em;
    bottom: 0.25em;
    z-index: 20;

    width: 3in;
    max-width: 100%;
    min-height: 1em;

    border-left: 2em solid #FA0;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.25);
    background: #FFE;
    padding: 0.5em 0.75em;
    font-size: .8em;

}

#idle-warning::before {

    content: ' ';
    display: block;
    position: absolute;
    left: -2em;
    top: 0;

    width: 1.25em;
    height: 100%;
    margin: 0 0.375em;

    background: url('images/warning.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
/* ── Splash screen overlay ────────────────────────────────────────────────── */

.splash-screen {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1c1c1c;
    z-index: -1;
}

.splash-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 30px;
    background-color: #1c1c1c;
}

.splash-title {
    font-family: sans-serif;
    font-size: 1.1em;
    color: #aaaaaa;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.splash-hostname {
    font-family: monospace;
    font-size: 2em;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 14px;
    letter-spacing: 0.03em;
}

.splash-wait {
    font-family: sans-serif;
    font-size: 1em;
    color: #aaaaaa;
    margin-bottom: 18px;
}

.splash-timer {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.splash-timer-count {
    font-family: monospace;
    font-size: 3em;
    font-weight: bold;
    color: #4caf50;
    min-width: 3ch;
    text-align: right;
    line-height: 1;
}

.splash-timer-unit {
    font-family: sans-serif;
    font-size: 1em;
    color: #4caf50;
}

/* ── Console section ──────────────────────────────────────────────────────── */

.splash-console-label {
    font-family: monospace;
    font-size: 0.85em;
    color: lightgrey;
    background-color: green;
    padding: 4px 1%;
}

.console {
    white-space: pre;
    background-color: #1c1c1c;
    color: lightgrey;
    font-family: monospace;
    flex: 1;
    overflow: auto;
    padding-left: 2%;
    margin: 0;
    text-align: left;
}
