/* your styles go here */
.custom-header {
  background-color: #ba9832 !important; /* dark blue-gray */
}

/* Logo styles */
.navbar-brand img {
  max-height: 40px;
}

/* Toggle Button Custom Style */
.menu-btn {
  display: inline-block;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease-in-out;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 4px 0;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Optional: On Active/Clicked state */
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.navbar-brand:hover
{
  color:#fff;
}
.sidebar-item.active > .sidebar-link {
  border-left: 4px solid #000;
  background: #0078D4;
}
.sidebar-link span
{
	margin: 0 10px 0 0;
}
.sidebar-link:hover {
  color: #fff;
  border-left: 4px solid #000;
  background: #0078D4;
}
.sidebar-link[aria-expanded="true"]:hover, .sidebar-link[aria-expanded="aria-expanded"]:hover {
  background: #0078D4;
  color: #fff;
}
.sidebar-link.active  {
  border-left: 4px solid #000;
  background: #0078D4;
  color: #fff;
}
.login-page
{
  background: linear-gradient(to right bottom,  #003E6E , #0078D4);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lgs 
{
  min-height: 100vh;
  padding: 0;
  margin: 0;
}
.login-page-inner {
  width: 400px;
  margin: auto;
  padding: 36px 48px 48px 48px;
  background-color: #f2efee;
  border-radius: 11px;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
}
.loogo
{
  text-align: center;
  margin: 0 0 30px 0;
}
.loogo img 
{
  max-width: 250px;
}
.inp-full
{
  width: 100%;
  height: auto;
  margin: 0 0 20px 0;
}
.inp-full h5 
{
   font-family: 'Poppins';
   color:#000;
   margin: 0 0 7px 0;
   font-size: 15px;
   font-weight: 400;
}
.inp-full h4 
{
   font-family: 'Poppins';
   color:#0078D4;
   margin: 0 0 7px 0;
   font-size: 20px;
   font-weight: 600;
   text-align: center;
}
.inp
{
  width: 100%;
  height: auto;
  position: relative;
}
.inp input
{
  width: 92%;
  padding:5px 12px;
  border-radius: 5px;
  border: none;
  height: 40px;
  outline: none;
  font-family: 'Poppins';
   color:#000;
   font-size: 15px;
}
.inp
{
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.inp-btn input
{
  width: 98.5%;
  padding:10px 0;
  border-radius: 5px;
  border: none;
  height: auto;
  outline: none;
  font-family: 'Poppins';
  color:#fff;
  font-size: 16px;
  background-image: linear-gradient(to right, #003E6E , #0078D4);
  cursor: pointer;
  font-weight: 500;
}
.inp-btn input:hover
{
  background: #0078D4;
}
.table
{
  width: 100% !important;
}
.dt-button
{
  background: #0078D4 !important;
  border:1px solid #ccc !important;
  color:#fff !important;
}
.page-content .modal-dialog
{ 
  max-width: 900px !important;

}


@media screen and (max-width: 767px)
{
  

}

.count-circle {
  display: inline-flex; /* Use flex for better content alignment */
  justify-content: center; /* Horizontally center the text */
  align-items: center; /* Vertically center the text */
  min-width: 30px; /* Minimum width for single digits */
  height: 30px; /* Fixed height */
  padding: 0 8px; /* Add horizontal padding for larger numbers */
  background-color: #0078D4 ; /* Light gray background */
  border-radius: 50%;
  font-weight: bold;
  color: #fff; /* Text color */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.count-circle:hover {
  color: #fff;
  transform: scale(1.1); /* Scale up slightly on hover */
  text-decoration: none; /* Ensure text underline doesn't reappear */
}
.totals-summary {
  display: flex;
  gap: 1rem; /* Space between blocks */
  flex-wrap: wrap; /* Allow wrapping if space is constrained */
  align-items: center;
}

.total-block {
  background-color: #f8f9fa; /* Light background for blocks */
  border: 1px solid #ddd; /* Optional border */
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center;
  width: 120px; /* Fixed width for uniform blocks */
  flex-shrink: 0; /* Prevent blocks from shrinking */
}

.total-block h6 {
  font-size: 0.9rem; /* Compact header text */
  margin-bottom: 5px;
  font-weight: bold;
}

.total-count {
  font-size: 1.2rem; /* Highlight the count */
  font-weight: bold;
  color: #007bff; /* Primary color for numbers */
}

@media (max-width: 768px) {
  .totals-summary {
      justify-content: center; /* Center blocks on smaller screens */
  }

  .total-block {
      width: 100px; /* Reduce block width for smaller screens */
  }
}
