html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* 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. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
    text-decoration: none;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

/* Descil.Panel Specific */

ul.pagination {
    margin-bottom: 0;
}

#navtabs a {
    color: black;
}

.dpNavtabs {
    color: black;
    margin-bottom: 1em;
}

.dpTable {
    margin-top: 0;
    border-collapse: collapse;
    border-radius: 0.25rem;
    border-style: hidden; /* hide standard table (collapsed) border */
    box-shadow: 0 0 0 1px lightgray; /* this draws the table border  */
}

.dpCardHeaderTitle {
    margin-top: .5rem;
}

.dpCardHeaderControl {
}

.dpDetailHeader {
    margin-left: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: dimgray;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.dpDetailTable {
    margin-top: 0;
    border-collapse: collapse;
    border-radius: 0.25rem;
    border-style: hidden; /* hide standard table (collapsed) border */
    box-shadow: 0 0 0 1px lightgray; /* this draws the table border  */
}

    .dpDetailTable td {
        border-style: solid;
        border-color: lightgray;
        border-width: 1px;
        padding: 0.25rem;
    }

    .dpDetailTable tbody tr td:first-child {
        width: 150px;
        max-width: 150px;
        text-align: left;
    }

.dpRowTable {
    margin-top: 0;
    border-collapse: collapse;
    border-radius: 0.25rem;
    border-style: hidden; /* hide standard table (collapsed) border */
    box-shadow: 0 0 0 1px lightgray; /* this draws the table border  */
}

    .dpRowTable td {
        border-style: solid;
        border-color: lightgray;
        border-width: 1px;
        padding: 0.25rem;
    }

.dpEditTable {
}

    .dpEditTable tr:first-of-type {
        border-top-style: solid;
        border-top-color: #dee2e6;
        border-top-width: 1px;
    }

    .dpEditTable tbody tr td:first-child {
        width: 120px;
        max-width: 120px;
        text-align: left;
    }

    .dpEditTable input[type=number] {
        width: 6rem;
    }

    .dpEditTable input[type=datetime-local] {
        width: 15rem;
    }

/* 
    .dpEditTable :not(:first-child) {
        border-top-style: solid;
        border-top-color: blue;
        border-top-width:1px;
    }
*/

.dpMessageList {
    color: darkgray;
    list-style-type: none;
    padding-left:0;
    margin-bottom:0;
}

.dpDashboardAlert {
    background-color: #f8f9fa;
}

/* Remove container margins after breakpoints */
@media (max-width: 992px) {
    .container {
        max-width:1000px !important;
    }
}

/* Dynamic text-truncate */
@media (min-width: 1200px) {
    .text-truncate {
        max-width: 300px !important;
    }
}

@media (max-width: 1200px) and (min-width: 992px) {
    .text-truncate {
        max-width: 150px !important;
    }
}

@media (max-width: 900px) and (min-width: 580px) {
    .text-truncate {
        max-width: 300px !important;
    }
}

@media (max-width: 580px) {
    .text-truncate {
        max-width: 150px !important;
    }
}