/* Login */

.btn-color {
  background-color: #4e88f3;
  color: #fff;
}

.cardbody-color {
  background-color: #ebf2fa;
}

a {
  text-decoration: none;
}

.navbar {
  -webkit-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.43);
  -moz-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.43);
  box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.43);
}





/* Sidebar */

.sidebar-container {
  position: fixed;
  width: 160px;
  height: 100%;
  left: -25px;
  top: 45px;
  overflow: visible;
  background: #fcf7f2;
  color: rgb(0, 0, 0);
  -webkit-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.43);
  -moz-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.43);
  box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.43);
  opacity: 0.8;
  
}

.content-container {
  padding-top: 0px;
  padding-left: 150px;
}




.sidebar-navigation {
  padding: 0;
  margin: 0;
  list-style-type: none;
  position: relative;
}

.sidebar-navigation li {
  background-color: transparent;
  position: relative;
  display: inline-block;
  width: 100%;
  line-height: 20px; /* Adjusted line-height for even spacing */
  font-size: 13px;
}

.sidebar-navigation li a {
  padding: 10px 5px 10px 30px;
  display: block;
  color: rgb(0, 0, 0);
  text-decoration: none; /* Ensure no underline */
  transition: background-color 0.3s ease;
}

.sidebar-navigation li:hover a,
.sidebar-navigation li a:focus {
  background-color: #e0e0e0;

}

.sidebar-navigation li.sub {
  display: block;
  /* left: 15px; */
  

}

.sidebar-navigation li.sub-selected {
  background-color: #bdd4eb;
}

.sidebar-navigation .selected {
  background-color: #d6bc8a;
}

.sidebar-navigation li.sub::before,
.sidebar-navigation li::before {
  background-color: #d39c37;
  position: absolute;
  content: '';
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: width 0.2s ease-in;
  transition: width 0.2s ease-in;
  width: 0px;
  z-index: -1;
}

.sidebar-navigation li.sub-selected::before {
  background-color: #bdd4eb;
}

/* .sidebar-navigation li:hover::before {
  width: 100%;
} */

.sidebar-navigation .hide_sidebar {
  font-size: 12px;
  text-transform: uppercase;
  background-color: #d3ab60;
  margin-left: 5px;
  padding: 5px;
}

.sidebar-navigation .header {
  font-size: 12px;
  text-transform: uppercase;
  background-color: #d3ab60;
  /* margin-left: 15px; */

  padding: 10px 15px 10px 40px;
}

.sidebar-navigation .header::before {
  background-color: transparent;
}



/* Other */

h1 {
  text-align: center;
}

.justify {
  text-align: justify !important;
  margin-right: 10px;
}

 
/* Add these styles to your existing CSS */
.sub-menu {
  display: none;
  position: absolute;

  left: 100px; /* Adjust this value to be equal to the width of your sidebar */
  top: 0;
  background-color: transparent; /* Adjust to match your theme */
  
  box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
  /* padding: 3px; */
  z-index: 1000;
  width: 140px; /* Adjust the width to match the design */
}

  
  .sub-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;

  }
  
  .sub-menu ul li {
    padding: 2px 2px;
  }
  
  .sub-menu ul li a {
    text-decoration: none;
    color: #000; /* Adjust to match your theme */
  }
  
  .sub-menu ul li a:hover {
    text-decoration: underline;
  }


  .sub-menu-container {
    position: relative;
  }
  
  .detail-sub-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: 200px; /* Adjust as needed */
    background-color: #fff; /* Adjust as needed */
    border: 1px solid #ddd; /* Adjust as needed */
    z-index: 1050; /* Ensure it appears above other elements */
    list-style-type: none;
    padding: 10px; /* Adjust as needed */
  }
  
  .detail-sub-menu li {
    padding: 5px 10px; /* Adjust as needed */
  }
  
  .detail-sub-menu li a {
    text-decoration: none;
    color: #000; /* Adjust as needed */
  }
  
  .detail-sub-menu li a:hover {
    background-color: #f0f0f0; /* Adjust as needed */
  }

  /* DATATABLES */
.dataTables_wrapper .dataTables_paginate .paginate_button,
.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    font-size: 13px; /* Adjust as needed */
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 2px 6px; /* Adjust as needed */
}

.dataTables_wrapper .dataTables_length select {
    height: auto; /* Adjust as needed */
    line-height: 1.2; /* Adjust as needed */
}

.dataTables_wrapper .dataTables_filter input {
    height: auto; /* Adjust as needed */
    padding: 3px; /* Adjust as needed */
}

.dataTables_wrapper .dataTables_info {
    padding-top: 2px; /* Adjust as needed */
}

.table.dataTable tbody th, 
.table.dataTable tbody td {
    padding: 2px 6px; /* Adjust as needed */
    font-size: 13px; /* Adjust as needed */
}


