.btn-primary{
    background-color: #1d5271 !important;
    border-color: #1d5271 !important;
}

/* Side Drawer Styles */
#sideDrawer {
    position: fixed;
   
    top: 0;
    right:-400px;
    height: 100%;
    width: 75%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 1050;
    padding: 10px;
    opacity: 0; /* Hidden by default */
    visibility: hidden;
}

#sideDrawer.open {
    transition: right 0.3s ease-in-out;
    visibility: visible;
    opacity: 1; /* Hidden by default */
    right: 0; /* Show the drawer */
    display: block;
}

#sideDrawer .drawer-header {
   
   
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(210, 210, 210);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

#sideDrawer .drawer-header h5 {
    margin: 0;
    font-size: 1.25rem;
}

.dataTables_filter, .dataTables_paginate{
    display: flex;
    justify-content: end;
}

.btn-info{
    background-color: #1890ff;
    
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
    /* background: red; */
    border-color: white;
    border: 1px solid #9ec66a !important;
    box-shadow: -3px -2px 6px 0px rgb(24 58 78 / 50%);
}
.form-control:focus {
    color: var(--vz-body-color);
    background-color: var(--vz-input-bg);
    border-color: var(--vz-input-focus-border);
    outline: 0;
    box-shadow: -1px 1px 13px 0 rgb(94 163 203 / 39%);
}
.input-active {
    color: var(--vz-body-color);
    background-color: var(--vz-input-bg);
    border-color: var(--vz-input-focus-border);
    outline: 0;
    box-shadow: -1px 1px 13px 0 rgb(94 163 203 / 39%);
}
#floatingButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#mainButton {
    background-color: #dcdedf;
    color: rgb(90, 85, 85);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border:1px solid #333;
}

#mainButton:hover {
    background-color: #aaadae;
}

#shortcutList {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    padding: 10px;
    width: 200px;
    position: absolute;
    bottom: 70px;
    right: 0;
}

#shortcutList ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#shortcutList ul li {
    padding: 5px 0;
    font-size: 14px;
}

.hidden {
    display: none;
}
.table-hover tbody tr:hover{
    background-color: #c8c8c8 !important;
}
