﻿html, body {
    height: 100%;
    position: relative;
}

body {
    padding-top: 50px;
    padding-bottom: 20px;
    background-color: #f0f0f0;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.import-login-form {
    width: 342px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

.ImportHeader {
    padding: 15px;
    border-bottom: 1px solid #808080;
    margin-bottom: 15px;
}

.ImportHeader.LeaveHours {
    display: flex;
    align-items: center;
}

.ImportResult {
    font-family: Consolas;
    font-size: 11pt;
    width: 100%;
}

.ImportResultHead {
    background: #eee;
    border: 1px solid black;
}

    .ImportResultHead th {
        padding: 4px 8px;
    }

.ImportResultEntry {
    border: 1px solid #808080;
    font-size: 14px;
}

    .ImportResultEntry td {
        vertical-align: top;
        padding: 2px 4px;
    }

    .ImportResultEntry.Trace {
        background: #fffff8;
        color: #333;
    }

    .ImportResultEntry.Info {
        background: #f8ffff;
        color: blue;
    }

    .ImportResultEntry.Warning {
        background: #fffcf8;
        color: orange;
    }

    .ImportResultEntry.Error {
        background: #fff8f8;
        color: red;
    }

.Object {
    display: inline-block;
    margin: 0 2px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    padding: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
}

.ObjectHead {
    font-weight: bold;
    color: black;
}

    .ObjectHead label {
        margin-bottom: 0;
    }

    .ObjectHead input {
        display: none;
    }

        .ObjectHead input ~ .glyphicon-triangle-bottom {
            display: none;
        }

        .ObjectHead input:checked ~ .glyphicon-triangle-bottom {
            display: inline-block !important;
        }

        .ObjectHead input:checked ~ .glyphicon-triangle-right {
            display: none;
        }

.PropertyPanel {
    position: absolute;
    z-index: 1000;
    max-height: 500px;
    overflow-y: auto;
}

.Properties {
    display: table;
    background-color: white;
    border: 1px solid black;
    font-size: 12px;
}

.Property {
    display: table-row;
}

.Name {
    padding: 1px 5px;
    display: table-cell;
    white-space: nowrap;
    color: black;
    font-weight: bold
}

.Value {
    display: table-cell;
    padding: 2px 5px;
}

.database-feedback {
    text-align: center;
    font-size: 22px;
    margin: 15px 15px;
    padding: 5px
}

.bold {
    font-weight: bold;
}

.PreWhiteSpace {
    white-space: pre;
}

.qrd-card {
    margin: 8px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.13);
    background-color: #fff;
    border: 1px solid #ddddda;
    border-top-color: #e9e9e4;
    border-bottom-color: #bdbdb7;
    padding: 25px 8px 25px 8px;
}

.center-content {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

    .center-content.absolute {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        pointer-events: none;
    }

.panel-heading {
    background-color: darkslategrey;
    color: white;
    text-align: center;
    font-size: 32px;
}