:root {
    --primary-dark-color: #0b1e2f;
    --primary-light-color: #11304f;
}
body {
    font-family: Arial, sans-serif;
    background-color:#11304f;
    color:white;
}
header {
    width: 100%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, .2);
}
.sidebar {
    height: 100vh;
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--primary-dark-color);
    color: #fff;
    transition: all 0.3s ease;
    overflow-x: auto;
    z-index: 1;
}
.table td, .table th {
    color: #FFF;
}
.sidebar.collapsed {
    width: 80px;
}

.sidebar a {
    color: #adb5bd;
    text-decoration: none;
    padding: 7px 15px;
    display: block;
    transition: all 0.3s ease;
}

.sidebar a:hover {
    background-color: var(--primary-light-color);
    color: #fff;
}

.sidebar h2 {
    font-size: 1.5rem;
    text-align: center;
    padding: 15px 0;
    margin: 0;
    transition: all 0.3s ease;
}

.sidebar.collapsed h2 {
    font-size: 1rem;
}

.sidebar.collapsed a {
    text-align: center;
}

.content {
    margin-left: 250px;
    transition: all 0.3s ease;
    background-color:#11304f;
    padding-bottom: 50px;
}

.content.collapsed {
    margin-left: 80px;
}

.toggle-btn {
    background-color: var(--primary-light-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
h1{
    color:var(--primary-dark-color);
}
a{
    color: white;
}
.card-border{
    border-left: 5px solid #fff;
}
.audit-card{
    background: linear-gradient(45deg, #4099ff, #73b4ff);
}
.open-card{
    background-color: #A1DD70;
}
.complete-card{
    background: #046582;
}
.pending-card{
    background: #FF2E23;
}
.cost-card{
    background: linear-gradient(45deg, #2ed8b6, #59e0c5);
}
.first-card{
    background: #dbc23b;
    color: #333 !important;
}
.second-card{
    background: #4A50B2;
}
.sidebar.collapsed a span {
    display: none;
}
.sidebar.collapsed a svg {
    width: 24px;
    height: 24px;
}
.sidebar.collapsed a{
    justify-content: center;
}
.logo-img {
    width: 80px;
}
#toggleBtnIcon path {
    fill: #0abc12;
}
#toggleBtnIcon {
    position:absolute;
    right: -10px;
    display: none;
}
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before, table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
    border-left: 10px solid rgba(255, 255, 255, 0.5) !important;
}
.tab-content {
    background: #0b1e2f;
    color: #FFF;
}
.tab-pane > * {
    background: #0f2b48;
}
.ql-editor.ql-blank::before{
    color: #FFF !important;
}
.ql-toolbar.ql-snow svg path, .ql-toolbar.ql-snow svg line, .ql-toolbar.ql-snow svg rect, .ql-toolbar.ql-snow svg polyline, .ql-toolbar.ql-snow svg circle {
    stroke: #FFF;
}
.modal-content {
    background: #11304f;
    color: #FFF;
}
.modal-content h1, .modal-content .btn-close {
    color: #FFF;
}
.form-control, .form-select {
    background: #0b1e2f;
    color: #FFF;
    border: #0b1e2f;
}
@media all and (max-width: 992px) {
    .sidebar {
        left: -300px;
    }
    .content, .content.collapsed {
        margin: 0;
    }
    .sidebar.collapsed{
        left: 0;
        width: 250px;
    }
    .sidebar.collapsed a span {
        display: block;
    }
    .sidebar.collapsed a {
        justify-content: start;
    }
    #toggleBtnIcon {
        display: block;
    }
    canvas{
        width: 100%;
        height: auto;
    }
}