.nav-link {
  color: #c6c9c9;
  font-size: 14px;
}

.nav-link:hover {
  border-left: 3px solid #ff5f15;
  color: white;
}

.nav-link:focus {
  color: white;
}

.nav-link.active {
  border-left: 4px solid #ff5f15 !important;
  color: white !important;
}

.btn-theme {
  --bs-btn-bg: #06163a;
  --bs-btn-color: #ffffff;
}

.bg-submenu {
  color: #afb9b9;
  background-color: #0e2046;
}

.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: #2e3e60;
  border-color: #06163a;
}

.nice-select {
  height: auto !important;
  line-height: normal !important;
}

table th {
  font-size: small;
  font-weight: 600;
}

table td {
  font-size: small;
}

label {
  font-size: small;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 5%);
}

@media (min-width: 1200px) {
  legend {
    font-weight: 500;
    font-size: 20px;
  }
}

.mystyle {
  font-size: 12px;
}
.table-condensed > tbody > tr > td,
th {
  padding: 6px 6px;
}

.table-condensed > thead > tr > th {
  padding: 6px 6px;
}

.card-header {
  background-color: #06163a;
}

label {
  font-weight: 600;
}

/* .bg-1 {
  background: linear-gradient(
    45deg,
    black,
    white,
    yellow,
    green,
    orange,
    purple
  );
} */


    /* toggle btn  */
  
    .toggle-switch {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 25px;
      cursor: pointer;
    }
  
    .toggle-switch input[type="checkbox"] {
      display: none;
    }
  
    .toggle-switch-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #ddd;
      border-radius: 20px;
      box-shadow: inset 0 0 0 2px #ccc;
      transition: background-color 0.3s ease-in-out;
    }
  
    .toggle-switch-handle {
      position: absolute;
      top: 2px;
      left: 3px;
      width: 21px;
      height: 21px;
      background-color: #fff;
      border-radius: 50%;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease-in-out;
    }
  
    .toggle-switch::before {
      content: "";
      position: absolute;
      top: -25px;
      right: -35px;
      font-size: 12px;
      font-weight: bold;
      color: #aaa;
      text-shadow: 1px 1px #fff;
      transition: color 0.3s ease-in-out;
    }
  
    .toggle-switch input[type="checkbox"]:checked+.toggle-switch-handle {
      transform: translateX(45px);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 0 0 3px #05c46b;
    }
  
    .toggle-switch input[type="checkbox"]:checked+.toggle-switch-background {
      background-color: #05c46b;
      box-shadow: inset 0 0 0 2px #04b360;
    }
  
    .toggle-switch input[type="checkbox"]:checked+.toggle-switch:before {
      content: "On";
      color: #05c46b;
      right: 0px;
    }
  
    .toggle-switch input[type="checkbox"]:checked+.toggle-switch-background .toggle-switch-handle {
      transform: translateX(34px);
    }