﻿/* 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;
}
/* Page Content Slide Entry */
.slide-entry {
    position: relative;
    animation: slide-entry-animation 2s 1;
    animation-direction: normal;
}

@keyframes slide-entry-animation {
    0% {
        top: 720px;
    }

    100% {
        top: 0px;
    }
}
/* Page Content Fade Entry*/
.fade-entry {
    animation: fadeIn ease 0.85s;
    -webkit-animation: fadeIn ease 0.85s;
    -moz-animation: fadeIn ease 0.85s;
    -o-animation: fadeIn ease 0.85s;
    -ms-animation: fadeIn ease 0.85s;
}

@keyframes fadeIn {
    0% {opacity: 0.15;}
    100% {opacity: 1;}
}

@-moz-keyframes fadeIn {
    0% {opacity: 0.15;}
    100% {opacity: 1;}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0.15;}
    100% {opacity: 1;}
}

@-o-keyframes fadeIn {
    0% {opacity: 0.15;}
    100% {opacity: 1;}
}

@-ms-keyframes fadeIn {
    0% {opacity: 0.15;}
    100% {opacity: 1;}
}


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

/*
 * ===================================
 * Start Bootstrap - Simple Sidebar (https://startbootstrap.com/templates/simple-sidebar)
 * Copyright 2013-2020 Start Bootstrap
 * Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-simple-sidebar/blob/master/LICENSE)
 * ===================================
 */
body {
    font-family: Calibri !important;
    background-color: #EBF5FB;
}

#wrapper {
    overflow-x: hidden;
}

#sidebar-wrapper {
    min-height: 100vh;
    margin-left: -15rem;
    -webkit-transition: margin .4s ease-out;
    -moz-transition: margin .4s ease-out;
    -o-transition: margin .4s ease-out;
    transition: margin .4s ease-out;
}

#sidebar-wrapper .sidebar-heading {
    padding: 0.875rem 1.25rem;
    font-size: 1.2rem;
    font-weight: bolder;
}

#sidebar-wrapper .list-group {
    width: 15rem;
}

.list-group-item:hover {
    background: #16A085;
}


#page-content-wrapper {
    min-width: 100vw;
    margin-top: 10px;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: 0;
}

@media (min-width: 768px) {
    #sidebar-wrapper {
        margin-left: 0;
    }

    #page-content-wrapper {
        min-width: 0;
        width: 100%;
    }

    #wrapper.toggled #sidebar-wrapper {
        margin-left: -15rem;
    }
}

/* Dashboard */
.content-head {
    font-weight: bold;
    font-size: 22px;
    overflow: auto;
    border: ridge;
}

.content-body {
    text-align: center;
    font-weight: bold;
    font-size: 40px;
    color: darkcyan;
    overflow: auto;
    background-color: rgba(255,255,255,0.9);
}
/* copy pasta*/

.counters {
    background: #0f479a;
    color: #fff;
    padding: 20px 10px;
    border-top: 3px lightskyblue solid;
    margin: 25px 0px;

    border-radius: 10px;
    overflow: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);

}

    .counters h3 {
        font-family: 'Courier New', sans-serif;
        font-weight: bold;
        background-color: lightskyblue;
        color: #3c3c3c;
        padding: 10px;
        border-radius: 10px;
        overflow: auto;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }

.counters .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    text-align: center;
}

.counters i {
    color: lightskyblue;
    margin-bottom: 5px;
}

.counters .counter {
    font-size: 45px;
    margin: 10px 0;
}

@media (max-width: 720px) {
    .counters {
        margin-right: 30px;
    }

    .counters .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .counters .container > div:nth-of-type(1),
    .counters .container > div:nth-of-type(2) {
        border-bottom: 1px lightskyblue solid;
        padding-bottom: 20px;
    }
}


/* 
    ====================
    Tables
    ====================
*/

.content-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 400px;
    border-radius: 10px 10px 0 0;
    /*overflow: hidden;*/
    overflow: scroll;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.content-table thead tr {
    background-color: rgb(80,80,80);
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

.content-table th,
.content-table td {
    padding: 12px 15px;
    text-align: center;
}

.content-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
    background-color: rgba(230, 230, 230, 0.85);
}

.content-table tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.85);
}

.content-table tbody tr:last-of-type {
    border-bottom: 3px solid rgb(112, 128, 144);
}

.content-table tbody tr:hover {
    /*font-weight: bold;*/
    /*color: #009879;*/
    background-color: rgba(50, 50, 50, 1);
    color: white;
    font-weight: 500;
}

/*
    =====================
    Site Header
    =====================
*/
.header-table {
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 0.9em;
    min-width: 320px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.header-table thead tr {
    background-color: rgba(40, 180, 40, 0.9);
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.header-table th,
.header-table td {
    padding: 12px 15px;
}

.header-table th {
    font-size: 32px;
}

.header-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.header-table tbody tr:nth-of-type(even) {
    background-color: rgba(230, 230, 230, 0.75);
}

.header-table tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.75);
}

.header-table tbody tr:last-of-type {
    border-bottom: 2px solid rgba(112, 128, 144, 1);
}

.header-table tbody tr:hover {
    background-color: rgba(112, 128, 144, 0.3);
}

.header-table td {
    font-weight: bolder;
}

/*
    =====================
    Order Item Header
    =====================
*/
.order-item-table {
    border-collapse: collapse;
    margin: 10px 0;
    /*font-size: 0.5em;*/
    min-width: 720px;
    max-width: 1280px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.order-item-table thead tr {
    background-color: rgba(40, 180, 40, 0.9);
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.order-item-table th,
.order-item-table td {
    padding: 3px 2px;
}

.order-item-table th {
    font-size: 16px;
}

.order-item-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.order-item-table tbody tr:nth-of-type(even) {
    background-color: rgba(230, 230, 230, 0.75);
}

.order-item-table tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.75);
}

.order-item-table tbody tr:last-of-type {
    border-bottom: 2px solid rgba(112, 128, 144, 1);
}

.order-item-table tbody tr:hover {
    background-color: rgba(112, 128, 144, 0.3);
}

.order-item-table td {
    font-weight: bolder;
}

.order-item-str{
    min-width: 100px;
    max-width: 100px;
}

.order-item-num{
    max-width:70px;
    min-width:70px;
}

.order-item-val{
    min-width:70px;
    max-width:70px;
    overflow:hidden;
}

/*
    ============================
    Edit pages
    ============================
*/

.edit-ui {
    color: black;
    background-color: white;
    opacity: 0.95;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding-bottom: 5px;
    min-width: 320px;
    padding-left: 10px;
    padding-right: 10px;
}

.edit-ui h1 {
    font-size: 32px;
    padding: 2px 0;
    margin-top: 5px;
}

.edit-ui h4 {
    font-size: 24px;
    padding: 2px 0;
}

.edit-ui input select {
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    padding: 8px 0;
    margin: 8px 0;
    border-bottom: 1px solid #4e4e4e;
}


/*
    ========================
    Details and Delete Pages
    ========================
*/
.info-table {
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 0.9em;
    min-width: 320px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.info-table thead tr {
    background-color: rgba(40, 180, 40, 0.9);
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.info-table th,
.info-table td {
    padding: 12px 15px;
}

.info-table th {
    font-size: 32px;
}

.info-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.info-table tbody tr:nth-of-type(even) {
    background-color: rgba(230, 230, 230, 0.75);
}

.info-table tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.75);
}

.info-table tbody tr:last-of-type {
    border-bottom: 2px solid rgba(112, 128, 144, 1);
}

.info-table tbody tr:hover {
    background-color: rgba(112, 128, 144, 0.3);
}

.info-table td {
    font-weight: bolder;
}
