﻿html, body, .container {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu';
}

body {
    background-color: #f7f8f9;
}

header, nav, footer {
    display: block;
}

.info-msg {
    cursor: pointer;
}

/*----------------------------------------------------------*/
/* Header */
/*----------------------------------------------------------*/
header {
    width: 100%;
    flex: 0 0 0;
    border-bottom: black 1px solid;
}


#header-container {
    display: flex;
    align-items: center;
    background-color: #507d7a;
    height: 60px;
    width: auto;
}

#app-logo {
    padding-left: 32px;
    height: 68px;
}

    #app-logo img {
        flex: 0 0 100px;
        height: 56px;
        margin: 6px 0 0 0;
        background-color: transparent;
        border: none;
        border-radius: 5px;
    }

#app-title {
    flex: 0 0 900px;
    color: white;
    font-size: 26px;
    display: inline-block;
    padding-left: 24px;
    width: 800px;
    height: 100%;
    line-height: 60px;
    font-family: 'PT Sans';
}

ul.dst-options li {
    margin-top: 16px;
    margin-bottom: 16px;
}

    ul.dst-options li span {
        font-weight: bold;
        color: #388FA3;
        text-decoration: underline;
    }

#nav-container {
    width: 100%;
}

ul.nav-menu {
    width: auto;
    text-align: right;
    margin: 11px;
    padding: 0;
}

    ul.nav-menu form {
        display:inline;
    }

    ul.nav-menu li {
        width: auto;
        text-align: right;
        margin: 0px 12px 0px 12px;
        padding: 0;
        display: inline;
        list-style: none;
        vertical-align: middle;
    }

        ul.nav-menu li a,
        ul.nav-menu li button {
            font-family: 'PT Sans';
            font-size: 16px;
            font-weight: normal;
            color: white;
            border: none;
            text-decoration: none;
            margin: 0 4px 0 8px;
            cursor: pointer;
        }

/*----------------------------------------------------------*/
/* Main Container */
/*----------------------------------------------------------*/
#main-container {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    overflow: hidden;
    border-top: 2px solid darkgray;
}

#content-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

#content-container {
    flex: 1 1 auto;
    padding: 24px;
    display: flex;
}

#content-intro, #content-vision, #content-docs {
    padding: 32px;
    line-height: 1.5;
    font-size: 1.2em;
}

div.content-type {
    flex: 1 1 auto;
    position: relative;
    padding: 20px;
    background-color: white;
    border: 1px solid darkgray;
    border-radius: 5px;
    overflow-y: auto;
}

.ui-dialog-title {
    color: white;
    font-family: 'PT Sans' !important;
}

div.nav-container {
    margin-top: 6px;
}

a.doc-link {
    color: #f8a951;
}

/************************************************************/
/* Buttons                       */
/************************************************************/
input[type="button"].tool, button.tool {
    font-family: 'PT Sans';
    width: 120px;
    height: 36px;
    background-color: #e7e6e6;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    margin: 6px 4px;
    border: 1px #112c1d solid;
}

input[type="button"]:disabled button:disabled {
    color: #a6a6a6 !important;
    cursor: default !important;
}

input[type="button"].tool.active {
    border: 2px solid #507d7a !important;
    background-color: #d6e8e7 !important;
    color: #2c5250 !important;
    font-weight: bold;
}

.btn-row {
    text-align: center;
}

.btn-large {
    width: 140px !important;
}

.btn-medium {
    width: 128px !important;
    margin: 2px 0px !important;
}

.btn-small {
    width: 90px !important;
}

/************************************************************/
/* HTML Tables                                              */
/************************************************************/
th {
    background-color: #f2f2f2;
    position: sticky;
    z-index: 1;
    top: 0;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    border-right: 2px solid #ddd;
}

td {
    border-bottom: 2px solid #ddd;
    border-right: 2px solid #ddd;
    overflow: hidden;
    text-overflow: ellipsis;
}

th, td {
    padding: 8px;
    text-align: left;
}

    th:first-child,
    td:first-child {
        border-left: 2px solid #ddd;
    }

/************************************************************/
/* Views (non-map)                                          */
/************************************************************/

h2.view-title {
    font-size: 24px !important;
}

div.view-content {
    font-size: 17px;
}

ul.view-content li {
    margin: 8px 0;
}
