﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ 
for details on configuring this project to bundle and minify static web assets. */
body {
    padding-top: 50px;
    padding-bottom: 20px;
    background-color: #FCFCFC;
}

html,
body,
.body-content,
.map-row,
.map-col {
    height: 100%;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    overflow-y: auto;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Custom CSS */

html {
    position: relative;
}

body {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    padding-top: 70px;
    padding-bottom: 30px;
}

.navbar {
    min-height: 70px;
}

.navbar-brand {
    height: 70px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-inverse {
    background-color: #111324;
}

    .navbar-inverse .navbar-nav > li > a,
    .navbar-inverse .navbar-nav > li > button {
        color: white;
        text-decoration: none;
        transition: color .3s ease;
        font-weight: 200;
        font-size: 16px;
        line-height: 20px;
        border: solid .5px transparent;
    }

        .navbar-inverse .navbar-nav > li > a:hover,
        .navbar-inverse .navbar-nav > li > button:hover {
            color: #51cfdb;
            border-bottom: solid .5px #51cfdb;
            text-decoration: none;
        }

.navbar-brand-logo {
    width: 90px;
}

.footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 30px;
    border-top: solid 1px #ddd;
    text-align: center;
    background-color: white;
}

@media (min-width: 768px) {
    .navbar-inverse .navbar-nav > li > a,
    .navbar-inverse .navbar-nav > li > button {
        padding: 0px;
        margin: 25px 15px;
    }
}

.card {
    box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    padding: 15px 25px 15px 25px;
    margin-bottom: 15px;
    border-radius: 5px;
    background-color: #FFFFFF;
}

.map-col {
    padding-right: 0px;
    padding-left: 0px;
}

.map-info-col {
    margin-top: 15px;
}

#map-canvas {
    width: 100%;
    height: 100%;
}

input.display-column {
    margin-right: 5px;
}

table.dataTable {
    margin-left: 0px;
}

table#records.dataTable {
    margin: unset;
}

.padding-bottom-10px {
    padding-bottom: 10px;
}

.padding-left-35px {
    padding-left: 35px;
}

.width-500px {
    width: 500px;
}

.progress-success {
    background-color: #28a745 !important;
}

.progress-danger {
    background-color: #dc3545 !important;
}

.progress-info {
    background-color: #17a2b8 !important;
}

.status {
    margin: 0 10px;
    width: 20px;
    height: 20px;
    border-radius: 15px;
    border: solid 1px grey;
    background-color: #787787;
}

.status-valid {
    color: #279c2f;
}

.status-invalid {
    color: #b11004;
}

/* For some reason, th's are not aligned with the tbody td's. This fixes that*/
table .dataTable thead th, table.dataTable thead td {
    padding-left: 10px;
}

table.dataTable thead > tr > th.sorting_asc,
table.dataTable thead > tr > th.sorting_desc,
table.dataTable thead > tr > th.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting {
    padding-right: 10px;
}

.inline {
    display: inline;
}