body {
    background: #f4f6f9;
}

.sidebar {
    min-height: 100vh;
    background: #212529;
}

.sidebar a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 5px;
}

.sidebar a:hover {
    background: #343a40;
}

.card-stat {
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

/*==================================================
  Mobile Quotation Layout
==================================================*/

@media (max-width: 768px) {

    .table-responsive {
        overflow: visible !important;
    }

    #serviceTable thead {
        display: none;
    }

    #serviceTable,
    #serviceTable tbody,
    #serviceTable tr,
    #serviceTable td {
        display: block;
        width: 100%;
    }

    #serviceTable tr {
        background: #fff;
        border: 1px solid #dee2e6;
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,.08);
    }

    #serviceTable td {
        border: none;
        padding: 8px 0;
    }

}

/*=========================================
  Quotations Table
=========================================*/

#quotationTable {
    table-layout: auto;
    width: 100%;
}

#quotationTable td,
#quotationTable th {
    white-space: nowrap;
    vertical-align: middle;
}

#quotationTable td:last-child,
#quotationTable th:last-child {
    width: 150px;
    text-align: center;
}

#quotationTable .dropdown {
    position: static;
}

.table-responsive {
    overflow-x: auto;
    overflow-y: visible;
}

@media (max-width:768px){

    #quotationTable th:nth-child(3),
    #quotationTable td:nth-child(3){
        display:none;
    }

}

table td{
    vertical-align: top;
    padding: 6px 8px;
}

table th{
    padding: 8px;
}

.description-cell{
    line-height:1.4;
}

.amount-cell{
    text-align:right;
    white-space:nowrap;
}

.card-stat{
    transition: all .25s ease;
    cursor: pointer;
}

.card-stat:hover{
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}