.search_box {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.search_box label {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

.form-control:focus {
  border-color: #ced4da !important;
  box-shadow: 0 0 0 .25rem rgb(222 229 238 / 25%) !important;
}

.form-select:focus {
  border-color: #ced4da !important;
  box-shadow: 0 0 0 .25rem rgb(222 229 238 / 25%) !important;
}

tr:nth-child(odd) {
  /* background-color: #fff6f3 !important; */
  background-color: #e5e5e5 !important;
  --bs-table-accent-bg: transparent !important;
}

tr:nth-child(even) {
  /* background-color: #e5e5e5 !important; */
  background-color: #fff6f3 !important;
  --bs-table-accent-bg: transparent !important;
}

table a {
  color: #cc0000;
}

.box_shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.rules {
  font-size: 16px;
}

.top_hr {
  background: #b90800;
  height: 3px !important;
  opacity: 1;
  margin-top: 10px !important;
}

.date_field {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e5e5e5;
  border-radius: 0px;
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
  padding: 10px;
  padding-right: 0;
}

.date_num {
  font-size: 50px;
  color: #333333;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

.search_box button {
  background-color: #28a745;
  color: white;
  padding: 8px;
  border: none;
  border-radius: 5px;
  margin: 4px 0 0px 0;
  cursor: pointer;
  font-size: 15px;
}

@media screen and (max-width: 480px) {
  .table_res th, .table_res td {
    font-size: 12px !important;
    padding: 3px !important;
  }
}

/* Hide the mobile menu by default */
#mobileMenu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  background-color: #000;
  /* Black background */
  z-index: 9999;
  transition: left 0.3s ease-in-out;
  color: #fff;
  overflow-y: auto;
}

/* Mobile menu header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #444;
  /* Slightly different color for header */
  border-bottom: 1px solid #555;
}

.mobile-menu-header span {
  font-size: 16px;
  font-weight: bold;
}

.mobile-menu-header .close-menu {
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* Mobile menu items */
.mobile-menu-content {
  padding: 0;
  list-style: none;
  margin: 0;
}

.mobile-menu-content .navbar-nav {
  display: list-item;
}

.mobile-menu-content li {
  padding: 15px;
  border-bottom: 1px solid #555;
}

.mobile-menu-content li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* Highlighted menu item */
.mobile-menu-content li a.highlighted {
  background-color: #d80000;
  display: block;
  padding: 15px;
  font-weight: bold;
}

/* Show mobile menu when active */
#mobileMenu.active {
  left: 0;
}

/* loader css start */
.lds-spinner {
  color: #000;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #000;
}

.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes lds-spinner {
  0% {
      opacity: 1;
  }

  100% {
      opacity: 0;
  }
}

/* loader end */
.fw_700{
  font-weight: 700;
}