.table td.fit,
.table th.fit {
    white-space: nowrap;
    width: 12%;
}

.progress-custom {
    height: 15px;
    min-width: 160px;
}

.progress-custom-align {
    vertical-align: middle;
}

.card-body h5 {
    font-weight: normal;
}

.user-table tbody tr td {
    font-size: 14px;
}

.user-table tfoot tr td {
    letter-spacing: 3px;
    font-size: 1rem;
}

.user-table {
    color:#222;
}

.table-incoming-outgoing .bg-danger {
    color: #000 !important;
    background-color: #ffd3db !important;
}
.table-incoming-outgoing .bg-success {
    color: #000 !important;
    background-color: #cbf9ff !important;
}

.table td,
.table th {
    padding: 0.6rem 0.4rem;
    vertical-align: middle;
}

.custom-table-td {
    text-align: right;
    vertical-align: middle;
}



.bg-success-light {
    background-color: #d8f5f9;
}
.bg-danger-light {
    background-color: #ffd3db;
}
.bg-disabled-light {
    /*background-color: #e9e9e9;*/
    color: #aaa;
}
.customprogress small {
    word-wrap: initial;
}

.row-summary {
    border-top: 4px solid #26c6da;
}
.row-summary td{
    color: #26c6da;
    font-weight: bold !important;
}

.menu-level-3 {
    padding-left: 30px !important;
}

.scroll-sidebar {
    overflow-y: auto;
    padding-bottom: 50px;
}

.border-start {
    border-left: 1px solid #cacaca !important;
}

.text-small {
    font-size: small !important;
}

.link-muted, a:link {
    text-decoration: none;
}

.link-muted, a:visited {
text-decoration: none;
}

.link-muted a:hover {
text-decoration: underline;
}

.link-muted a:active {
text-decoration: underline;
}

.bottom-right {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    padding: 4px 14px;
    background-color: rgba(255, 255, 255, 0.5);
    color: black;
    opacity: 0.7;
    border-radius: 10px 0px;

}

.sidebar-nav ul .sidebar-item {
    margin-bottom: 4px;
  }

.sidebar-extras {
    margin-top: 14px;
    padding: 16px;
    padding-top: 0px;
}

.btn-toolbar .btn-group {
    width:inherit;
}

.table-scan {
    font-family: monospace;
}

.table-scan td {
    font-size:larger !important;
}

.table-scan td.text-info {
    text-align: right;
}

.table-scan-parent {
    overflow: auto;
    max-height: calc(60vh);
}

#scan-table tbody td {
    animation-duration:1s;
    animation-name: appearSmoothly;
}
@keyframes appearSmoothly {
    from {
        opacity: 0;
    }
    
    to {
        opacity: 1;
    }
}

.form-check-label, .form-check-input {
    cursor: pointer;
}

#orderModal .col-form-label {
    text-align: end;
}

.hstack {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    width:100%;
}
  
.vstack {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-self: stretch;
}

.toast-container {
    z-index:10;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none; /* Initially hidden */
}