body {
    font-size: .875rem;
}

/* Sidebar */
.quantum-dashboard .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    padding: 48px 0 0;
	overflow-y: auto;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.quantum-dashboard #loadingSpinner {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999; /* Make sure it's on top of other elements */
}

.quantum-dashboard .sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.quantum-dashboard .sidebar .nav-link.active {
    color: #2470dc;
}

.quantum-dashboard .sidebar .nav-item i{
    font-size: 16px;
}

/* Navbar */
.quantum-dashboard .navbar-brand {
    /* padding-top: .75rem;
    padding-bottom: .75rem; */
    font-size: 1rem;
    /* background-color: rgba(0, 0, 0, .25); */
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
}

.quantum-floating-label-content { 
    position: relative; 
    /* margin-bottom: 20px;  */
  }
  
.quantum-floating-label {
    font-size: 14px;
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 5px;
    padding: 0 6px;
    background: #fff;
    color: #212529;
    font-weight: 400;
    transition: 0.2s ease all;
}

.quantum-floating-input {
    display: block;
    width: 100%;
    padding: 0 20px;
    border: 1px solid #c7c7c7;
    border-radius: 4px;
}

.quantum-floating-span{
	background: #ffff00;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0 20px;
	border: 1px solid #c9c905;
	border-radius: 4px;
	font-weight: 700;
}

.quantum-border{
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    color: #212529;
    padding-left: 16px;
}

.form-select:focus{
        border-color: #c7c7c7;
        box-shadow: none;
}

.quantum-floating-input:focus, .quantum-floating-input:not(:placeholder-shown) {
    outline: none;
}

.quantum-floating-input:focus ~ .quantum-floating-label,
.quantum-floating-input:not(:placeholder-shown) ~ .quantum-floating-label {
    top: -14px;
    font-size: 13px;
}
  



.quantum-dashboard .navbar .navbar-toggler {
    top: .25rem;
    right: 1rem;
}

.quantum-dashboard .navbar .form-control {
    padding: .75rem 1rem;
    border-width: 0;
    border-radius: 0;
}

.quantum-dashboard .form-control-dark {
    color: #fff;
    background-color: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .1);
}

.quantum-dashboard .form-control-dark:focus {
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

.quantum-dashboard .rounded-button {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 2px solid black;
    border-radius: 50%;
    padding: 10px 20px;
    background-color: white;
    cursor: pointer;
}

.quantum-dashboard .alert-icon{
    font-size: 40px;
}

.quantum-dashboard th, td { white-space: nowrap; }

.quantum-dashboard .dashbord-table-light{
    --bs-table-bg: #ebebeb;
    --bs-table-striped-bg: #ebebeb;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #ebebeb;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #ebebeb;
    --bs-table-hover-color: #fff;
    color: #454545;
    border-color: #ebebeb;
    border: 1px solid #ebebeb;
    border-bottom:none;
}

.quantum-dashboard table.dataTable thead th, table.dataTable tfoot th{
    font-weight: 500;
   }

.quantum-dashboard table.dataTable thead{
    border: 1px solid #d2d2d2;
    border-bottom: none;
}

.quantum-dashboard .dashbord-table-light tr th{
    border: none !important;
}


/* ------------Account------------------- */

.quantum-dashboard .img-thumbnail{
    background-color: #ebebeb;
    border: 1px solid #dee2e6;
}

.quantum-dashboard .recipient-card-bg{
    background: #f7f7f7;
}



/* datable-css*/
.quantum-dashboard .dt-empty-footer .dt-length .dt-input{
    margin-right: 10px;    
}

.quantum-dashboard .dt-empty-footer .dt-length label{
    text-transform: capitalize;
}

.quantum-dashboard .quantum-no-caret::after {
    display: none;
}

.quantum-height{
    height: 30px;
    font-size: 12px;
}

.quantum-mob-height{
    border-left: none;
    border-right: none;
    border-top: none;
    border-radius: 0;
    min-height: 35px;
    font-size: 12px;
}

/*Overlay - START */

.main-content-base {
    position: relative;
}

.dash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100; /* Ensure overlay is on top */
}

.dash-overlay-text {
    color: white;
    font-size: 24px; /* Adjust font size as needed */
}

/*Overlay - END */

/*Tooltip custize for title show - START*/

.custom-tooltip
{
--bs-tooltip-max-width: 400px;
}

/*Tooltip custize for title show - END*/


@media screen and (max-width: 767px) {
    .quantum-dashboard .dt-layout-row {
        display: flex!important;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-end;
    }
}

