.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: #0A1F44;
	background-color: #0A1F44;
}
.login-ui .login-dialog {
	background-color: white;
}

.login-ui .info-banner {
    margin-top: 1em;
    padding: 0.75em 1em;
    text-align: center;
    font-size: 0.95em;
    color: white;
    border-radius: 0.5em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.login-ui .info-banner a {
    color: #ffcc00;
    font-weight: bold;
    text-decoration: underline;
}

.login-ui .info-banner a:hover {
    color: #ffffff;
}

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

}
.totp-enroll p,.totp-details{font-size:.8em}.totp-qr-code{text-align:center}.totp-qr-code img{margin:1em;border:1px solid rgba(0,0,0,0.25);box-shadow:1px 1px 2px rgba(0,0,0,0.25);cursor:pointer}h3.totp-details-header{font-size:.8em}h3.totp-details-header::before{content:'▸ '}.totp-details-visible h3.totp-details-header::before{content:'▾ '}.totp-details,.totp-hide-details{display:none}.totp-details-visible .totp-details{display:table}.totp-details-visible .totp-hide-details{display:inline}.totp-details-visible .totp-show-details{display:none}.totp-hide-details,.totp-show-details{color:blue;text-decoration:underline;cursor:pointer;margin:0 .25em;font-weight:normal}.totp-details{margin:0 auto}.totp-details th{padding-right:.25em;text-align:left}.totp-details td{font-family:monospace}.totp-detail{display:inline-block;margin:0 .25em}/* ========== General Window Styles ========== */

.guacamole-create-window,
.guacamole-delete-window {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 6px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #ccc;
    z-index: 1000;
}

.guacamole-create-window h2 {
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
}


/* ========== Buttons ========== */

.guacamole-submit-button,
.guacamole-close-button {
    width: 45%;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    display: inline-block;
}

.guacamole-submit-button {
    background-color: #333;
    color: white;
}

.guacamole-close-button {
    background-color: #555;
    color: white;
}

.guacamole-submit-button:hover,
.guacamole-close-button:hover {
    opacity: 0.8;
}

.guacamole-delete-button {
    width: 45%;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    border: 1px solid #a10000;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    display: inline-block;
    background-color: #b71c1c;
    color: white;
}

.guacamole-delete-button:hover {
    opacity: 0.8;
}


/* ========== Input Fields (input + select) ========== */

.guacamole-input-text,
.guacamole-input-select {
    box-sizing: border-box;
    width: 85%;
    min-width: 300px;
    height: 38px;
    line-height: 1.2;
    padding: 8px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    font-size: 1em;
    text-align: center;
}

/* ========== Checkbox & Dropdown Layout ========== */

.checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-wrapper input[type="checkbox"] {
    transform: scale(1.2);
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.checkbox-wrapper label {
    font-weight: bold;
    color: #333;
    margin: 0;
    padding: 0;
    position: relative;
    top: 1px;
    font-size: 1.1em;
}


/* ========== Status Messages ========== */

.status-message {
    display: none;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
}

.status-message.success {
    color: #2d8a26;
}

.status-message.error {
    color: #d32f2f;
}

.status-message.warning {
    color: #e65100;
}

.status-message.info {
    color: #0b79d0;
}


/* ========== Action Buttons (with Icons) ========== */

a.button.add-webaccess,
a.button.add-delete-webaccess {
    font-size: 0.8em;
    padding-left: 1.8em;
    position: relative;
}

a.button.add-webaccess:before,
a.button.add-delete-webaccess:before {
    content: " ";
    position: absolute;
    width: 1.8em;
    top: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: 1em;
    background-position: 0.5em 0.45em;
}

a.button.add-webaccess:before {
    background-image: url(images/action-icons/guac-monitor-add.svg);
}

a.button.add-delete-webaccess:before {
    background-image: url(images/x.svg);
}


/* ========== Form Elements ========== */

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    font-size: 1.1em;
}

/* Add spacing between labels (except the first) */
.guacamole-create-window label:not(:first-of-type) {
    margin-top: 10px;
}

/* Extra spacing below keyboard layout dropdown */
#keyboard-layout {
    margin-bottom: 20px;
}
