/* Colour codes used */
/*    Soft green: #88bf5b */
/*    Soft red: #ff6f6f */
/*    Main background: #f0f0f0 */
/*    Input fields: #ffffff */
/*    Login dialog background: #f5f5f5 */
/*    All text: #333333 */


/* General Style */
#agreement-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#dialog-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

#dialog-content button {
    margin: 10px;
}





@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes polygonPulse {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) rotate(45deg) scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1);
        opacity: 0.5;
    }
}


body {
    color: #333333;
    background-color: #f0f0f0;
}
pre {
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #cccccc;
}

a[href]:visited {
    color: #88bf5b;
}
a[href] {
    color: #88bf5b;
}

div.location,
input[type=text],
input[type=email],
input[type=number],
input[type=password],
textarea {
    background-color: #ffffff;
    color: #333333;
}


/* Login */
.login-ui {
    position: relative;
    overflow: hidden;

    color: #333333;
    background-color: #f0f0f0;
    animation: fadeInUp 1s ease;
}

.login-ui::before,
.login-ui::after,
.login-ui .shape1,
.login-ui .shape2 {
    content: '';
    position: absolute;
    background-color: rgba(13, 114, 252, 0.5);
    z-index: -1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    animation: polygonPulse 6s infinite ease-in-out;
}

.login-ui::before {
    top: 40%;
    left: 30%;
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.login-ui::after {
    top: 60%;
    left: 70%;
    width: 200px;
    height: 200px;
    animation-delay: 2s;
}

.login-ui .shape1 {
    top: 80%;
    left: 50%;
    width: 150px;
    height: 150px;
    animation-delay: 4s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ececec;
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.login-ui .shape2 {
    top: 20%;
    left: 80%;
    width: 250px;
    height: 250px;
    animation-delay: 1s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ececec;
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.login-ui .shape1::before {
    content: 'Jump';
}

.login-ui .shape2::before {
    content: 'Server';
}




.login-ui .login-fields .labeled-field input:focus {
    background-color: #f0f0f0;
    color: #333333;
}

.login-ui .login-fields .labeled-field {
    background-color: #f0f0f0;
    color: #333333;
}


.login-ui .login-dialog .logo {
    background-image: url('app/ext/custom-namespace/images/logo.png');
    width: 7em;
    height: 7em;
    -webkit-background-size: 7em auto;
    background-size: 7em auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}



.login-ui .login-dialog {
    background-color: #f5f5f5;
    color: #333333;
    animation: fadeInUp 1s ease;
}

.login-ui .login-dialog .version .app-name {
    font-weight: 300;
    text-transform: none;
    text-align: center;
    font-size: 1.5em;
    color: #333333;
    font-family: arial black, sans-serif;
}

div.logged-out-modal .ng-scope {
    color: #333333;
    background-color: #f5f5f5;
}

div.logged-out-modal .ng-scope button {
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #cccccc;
}

div.modal-contents {
    color: #333333;
    background-color: #ffffff;
}

.logged-out-modal guac-modal {
    color: #333333;
    background-color: #ffffff;
}

div.notification.ng.scope {
    border: 1px solid #cccccc;
}

.notification.error {
    background-color: #ff6f6f;
}

.client-status-modal .notification.error {
    background-color: #ff6f6f;
}

button.danger {
    background: #ff6f6f;
 }

.login-ui.error p.login-error {
    color: #ffffff;
    background-color: #ff6f6f;
}


/* Home */
.recent-connections .connection:hover {
    background-color: #88bf5b;
}

.menu-dropdown .menu-contents {
    background-color: #ffffff;
}
.menu-dropdown .menu-contents li a {
    color: #333333;
}
.menu-dropdown .menu-contents li a:hover {
    background-color: #88bf5b;
}

.list-item.selected {
    background: #88bf5b;
}
.list-item:not(.selected) .caption:hover {
    background-color: #88bf5b;
}
.list-item .name {
    color: #333333;
}

.settings.connections .connection-list .new-sharing-profile {
    opacity: .6;
}

.notification {
    color: #333333;
    background-color: #ffffff;
}


/* Menus */
.menu {
    color: #333333;
    background-color: #f0f0f0;
}

.clipboard,
.clipboard-service-target {
    background-color: #ffffff;
    color: #88bf5b;
}

.menu-dropdown .menu-contents li a.danger {
    color: #ffffff;
    font-weight: 700;
    background-color: #ff6f6f;
}

/* Connections */
#connection-warning {
    background-color: #f0f0f0;
}

.transfer-manager {
    background-color: #ffffff;
}
.transfer.error {
    background-color: #ff6f6f;
}


/* Settings */
.page-tabs .page-list li a[href],
.section-tabs li a {
    color: #333333;
}
.page-tabs .page-list li a[href]:hover,
.section-tabs li a:hover {
    background-color: #88bf5b;
}
.page-tabs .page-list li a[href]:visited {
    color: #333333;
}

.settings table.session-list tr.session:hover {
    background-color: #88bf5b;
}

.location-chooser .dropdown {
    background-color: #ffffff;
}

.settings.connectionHistory a.history-session-recording {
    color: #88bf5b;
}

.settings.connectionHistory a.history-session-recording:after {
    opacity: .0;
}

.user a,
.user-group a,
.connection a,
.connection-group a {
    color: #333333;
}
.user a:hover,
.user-group a:hover,
.connection a:hover,
.connection-group a:hover {
    color: #333333;
}
.user a:visited,
.user-group a:visited,
.connection a:visited,
.connection-group a:visited {
    color: #333333;
}

.manage-user .notice.read-only {
    color: #333333;
    background-color: #ffffff;
}

#filesystem-menu .header.breadcrumbs .breadcrumb:hover {
    background-color: #88bf5b;
}

#guac-menu #zoom-out:hover,
#guac-menu #zoom-in:hover {
    background-color: #88bf5b;
}
/*
 * 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;

}
.restrictionList{border:0}button.restrictionListButton{font-size:.75em}img.restrictionListHeader{width:.75em;height:.75em}img.restrictionListItem{width:1em;height:1em}.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}guac-client-statistics{font-size:13px;color:white;background:#111}guac-client-statistics dl.client-statistics{display:table;margin:0;padding:.25em}guac-client-statistics dl.client-statistics dt,guac-client-statistics dl.client-statistics dd{display:table-cell;padding:.25em}guac-client-statistics dl.client-statistics dt{padding-right:.5em;padding-left:1em}guac-client-statistics dl.client-statistics dt:first-child{padding-left:.5em}guac-client-statistics dl.client-statistics dd{min-width:6em;border:1px solid rgba(255,255,255,0.125);border-radius:3px;background:black}guac-client-statistics dl.client-statistics dd.no-value::before{color:#888;content:'-'}