﻿/* 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;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.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;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}

.customButton {
    margin-bottom: 10px;
    border: none;
    border-radius: 6px;
    color: white;
    background-color: #007bff;
    transition: background-color 1s;
    font-size: 0.9em;
    padding: 6px 12px;
}

.customButton:hover {
    background-color: #005cbf;
    color: var(--menu-text);
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 50%);
}

.taskDataTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px;
    white-space: nowrap;
}

    .taskDataTable thead th {
        border: none;
        font-size: 14px;
        color: #fff;
    }

    .taskDataTable tbody tr {
        margin-bottom: 10px;
        -webkit-box-shadow: 0 5px 12px -12px rgba(0,0,0,.29);
        -moz-box-shadow: 0 5px 12px -12px rgba(0,0,0,.29);
        box-shadow: 0 5px 12px -12px rgba(0,0,0,.29)
    }

    .taskDataTable tbody th, .taskDataTable tbody td {
        border: none;
        background: #fff
    }

        .taskDataTable tbody td .close span {
            font-size: 12px;
            color: #dc3545
        }


.taskDataTable {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529
}

    .taskDataTable th, .taskDataTable td {
        padding: .75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6
    }


        .taskDataTable th::after {
            opacity: 0 !important;
        }

    .taskDataTable thead th {
        vertical-align: bottom;
    }

    .taskDataTable tbody + tbody {
        border-top: 2px solid #dee2e6
    }

    .taskDataTable tr:hover {
        color: #212529;
        background-color: rgba(0,0,0,.075) -webkit-box-shadow: 0 8px 12px -12px rgb(0 0 0 / 76%) !important;
        -moz-box-shadow: 0 5px 12px -12px rgba(0,0,0,.29);
        box-shadow: 0 8px 12px -12px rgb(0 0 0 / 76%) !important;
    }

    .taskDataTable thead th {
        color: #fff;
        background-color: #377bffcf;
    }

.taskDataTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px;
    white-space: nowrap;
}

    .taskDataTable thead th {
        border: none;
        font-size: 14px;
        color: #fff;
    }

    .taskDataTable tbody tr {
        margin-bottom: 10px;
        -webkit-box-shadow: 0 5px 12px -12px rgba(0,0,0,.29);
        -moz-box-shadow: 0 5px 12px -12px rgba(0,0,0,.29);
        box-shadow: 0 5px 12px -12px rgba(0,0,0,.29)
    }

    .taskDataTable tbody th, .taskDataTable tbody td {
        border: none;
        background: #fff
    }

        .taskDataTable tbody td .close span {
            font-size: 12px;
            color: #dc3545
        }


.smaller_title {
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: 0;
    color: #2e2e2e;
}



/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1031; /* Sit on top */
    left: 0;
    top: 0;
    padding: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: white;
    margin: 2% auto; /* 5% from the top and centered */
    padding: 20px;
    border: 0;
    width: 60%; /* Could be more or less, depending on screen size */
    -webkit-box-shadow: 5px 5px 20px 0px rgba(138,138,138,0.51);
    -moz-box-shadow: 5px 5px 20px 0px rgba(138,138,138,0.51);
    box-shadow: 5px 5px 20px 0px rgba(138,138,138,0.51);
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    width: 100%;
    text-align: right;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }