﻿body {
    align-items: center;
    /*background-image: url('../img/bg03.jpg');*/
    background-image: url('../img/lake-01-blur.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
}


.login-container {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.84);
    padding: 20px;
    min-width: 400px;
    max-width: 400px;
}

.login-container label {
    font-weight: normal;
}

.login-container .form-control {
    /*border-radius:0;*/
}

.login-container .tenant-account-number {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qww-logo {
    background-image: url('../img/QuoteWerksForWeb.png');
    background-position: center;
    background-size: contain;
    height: 100px;
    margin-bottom: 13px;
    width: 100px;
}

.quotewerks-logo {
    display: block;
    width: 363px;
    margin-bottom: 30px;
}

.app-banner {
    display: block;
    width: 363px;
    margin-bottom: 30px;
}

.login-container .has-error .form-control, .login-container .has-error label {
    color: #ffabab;
}

.login-container .logout .form-group {
    margin-bottom:0;
}

.login-container .status {
    margin-top: 10px;
    margin-bottom: 10px;
}

    .login-container .status.status-mode-working {
        color: #f3f3aa;
    }

    .login-container .status.status-mode-success {
        color: greenyellow;
    }

    .login-container .status.status-mode-fail {
        color: #ffabab;
    }

.message-mode-working {
    color: #f3f3aa;
}
.message-mode-fail {
    color: #ffabab;
}
.message-mode-maintenance {
    color: #f3c87a;
}


.billing-options-message-container{
    position: relative;

}

.billing-options-message {
    font-size: 14px;
    color: #ecce84;
    cursor:pointer;
}
    .billing-options-message:hover{
        /*color:white;*/
        text-decoration:underline;
    }

    .billing-options-message-tooltip {
        top: 42px;
    }

.billing-options-message a {
    color: #ecce84; /* Link color */
    text-decoration: underline; /* Always underline */
    font-size: 14px; /* Font size */
}

        .billing-options-message a:hover,
        .billing-options-message a:focus {
            color: #d7b35c; /* Ensure the color remains the same on hover and focus */
            text-decoration: underline; /* Keep the underline on hover and focus */
        }

.billing-options-message-container .qw-callout {
    box-shadow: 0px 0px 20px #717171;
}

.billing-options-message-details {
    background-color: #00000082;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    color: #c8c8c8;
}


/* --- Tenant Combo Box --- */

.tenant-combo-box {
    position: relative;
}

.tenant-combo-box .form-control {
    padding-right: 32px;
}

.tenant-combo-toggle {
    position: absolute;
    right: 1px;
    top: 1px;
    bottom: 1px;
    width: 30px;
    background: transparent;
    border: none;
    color: #555;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    padding: 0;
    font-size: 14px;
    line-height: 1;
}

    .tenant-combo-toggle:hover {
        color: #333;
        background-color: #e6e6e6;
    }

.tenant-combo-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 200px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

    .tenant-combo-dropdown li {
        padding: 6px 12px;
        cursor: pointer;
        color: #333;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .tenant-combo-item-text {
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .tenant-combo-remove {
        flex-shrink: 0;
        margin-left: 8px;
        font-size: 18px;
        line-height: 1;
        color: #999;
        cursor: pointer;
        padding: 0 4px;
    }

        .tenant-combo-remove:hover {
            color: #c00;
        }

        .tenant-combo-dropdown li:hover,
        .tenant-combo-dropdown li.highlighted {
            background-color: #337ab7;
            color: #fff;
        }