html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.sidebar {
    width: 60px;
    height: 100vh;
    background: #1e293b;
    color: white;
    position: fixed;
    transition: 0.3s;
}

 .sidebar:hover {
        width: 250px;
    }

.menu-title {
    display: none;
}

.sidebar:hover .menu-title {
    display: inline;
}

.menu-item {
    padding: 15px;
    cursor: pointer;
}

.submenu {
    display: none;
    margin-top: 10px;
    padding-left: 10px;
}

.menu-item:hover .submenu {
    display: block;
}

.submenu a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    padding: 5px 0;
}


.sidebar {
    position: fixed;
    top: 0; 
    left: 0;
    height: 100vh;
    width: 60px;
    background-color: #1e293b;
    z-index: 1050;
    transition: width 0.3s;
    overflow-x: hidden;
    padding-top: 60px; 
}

.sidebar:hover {
        width: 220px;
    }

.menu-title {
    display: none;
    color: white;
    font-weight: 500;
}

.sidebar:hover .menu-title {
    display: inline;
}

.menu-item {
    padding: 15px;
    cursor: pointer;
}

.submenu {
    display: none;
    padding-left: 15px;
}

.menu-item:hover .submenu {
    display: block;
}

.submenu a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    padding: 6px 0;
}
.navbar {
    position: relative;
    z-index: 1000;
}
body {
    padding-left: 60px;
}



.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 100vh;
    background: #1e293b;
    color: white;
    transition: width 0.3s;
}

    .sidebar:hover {
        width: 250px;
    }

.menu-title {
    padding: 15px;
    display: block;
}

.submenu {
    display: none;
}

.menu-item:hover .submenu {
    display: block;
}

.submenu a {
    color: #cbd5e1;
    padding: 8px 15px;
    display: block;
    text-decoration: none;
}
.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
}


.dropCustom {
    top: 142% !important;
}

.table-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    white-space: nowrap;
}

    .table-scroll-wrapper table {
        min-width: 1300px;
    }
/*.btn:hover{color:none !important;}*/
/*btn:hover {
    color: inherit !important;
}
.btn:hover {
    color: red !important;
}*/

@media print {

    .no-print {
        display: none !important;
    }
}

@media print {

    body * {
        visibility: hidden;
    }

    #printArea, #printArea * {
        visibility: visible;
    }

    #printArea {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
}

@media print {

    /* hide buttons */
    .btn {
        display: none !important;
    }

    /* hide action column */
    .action-col {
        display: none !important;
    }

    /* remove scroll so full table prints */
    .table-scroll-wrapper {
        overflow: visible !important;
    }

    /* show full table width */
    table {
        width: 100% !important;
        border-collapse: collapse !important;
    }

    /* keep borders visible */
    table, th, td {
        border: 1px solid black !important;
    }

}