html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif !important;
  color: #161616 !important;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.card {
  background-color: #fdfdff !important;
  color: #3e3e3e !important;
  border-radius: 10px !important;
}

body td,
body label,
body .form-label,
body input,
body select,
body textarea,
body button,
body .form-control,
body .form-group,
body .table,
body .table td,
body .table th,
body .sidebar {
  font-size: 14px !important;
  color: #202020 !important;
}

body input,
body select,
body textarea,
body .form-control {
  border: 1px solid #ced4da !important;
  color: #202020 !important;
  font-size: 14px !important;
}

label{
  font-size: 14px !important;
  color: #454545 !important;
  font-weight: 700 !important;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #202020 !important;
  opacity: 1;
  font-size: 14px !important;
}
body .card .card-header {
  padding: 15px !important;
}

.container-scroller {
  display: flex;
  flex-direction: column;
}

.page-body-wrapper {
  display: flex;
  flex-grow: 1;
  width: 100%;
}

.sidebar {
  width: 250px !important;
  transition: width 0.3s ease;
  overflow: visible !important;
  background: #fff;
}

body.sidebar-collapsed .sidebar {
  width: 80px !important;
  padding-right: 10px;
}

.main-panel {
  flex-grow: 1;
  width: calc(100% - 300px);
  transition: width 0.3s ease;
}

body.sidebar-collapsed .main-panel {
  width: calc(100% - 80px);
}

.content-wrapper {
  width: 100%;
  min-height: 100vh;
  background: url('/static/image/body-backround.jpg') no-repeat center center fixed !important;
  background-size: cover !important;
  padding: 1rem;
}

.content-wrapper .container-fluid {
  width: 100% !important;
  max-width: none !important;
  padding-left: 1rem;
  padding-right: 1rem;
}
.profile-img {
  width: 50px !important;
  height: 50px !important;
  object-fit: cover;
  border: 2px solid white;
}

.btn-gradient-primary {
  background: linear-gradient(135deg, #d1542f, #ff8741) !important;
  color: #fff !important;
  font-weight: 500 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease-in-out !important;
  border: none;
  border-radius: 5px !important;

}

.btn-gradient-primary:hover {
  background: linear-gradient(135deg, #d1542f, #c3591c) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
  border: none;
    border-radius: 5px !important;

}

.btn-gradient-primary:active {
  transform: translateY(0px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

body .text-primary {
  color: #ff5e00 !important;
}

body .border-primary {
  border-color: #ff5e00 !important;
}
body .dropdown-item{
  background-color: #ececec !important;
  color:#000 !important;
}
body .dropdown-item:hover {
  background-color: #ffffff !important;
  color: #000 !important;
}
.btn-outline-primary {
  color: #ff5e00 !important;
  border: 1px solid #ff5e00 !important;
  background-color: transparent !important;
  font-weight: 500 !important;
  border-radius: 0.2rem !important;
  transition: all 0.3s ease-in-out;
  box-shadow: none;
  border-radius: 5px !important;

}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, #d1542f, #ff5e00) !important;
    color: #fff !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-2px) !important;
  border-color: transparent !important;
  border-radius: 5px !important;

}

.btn-outline-primary:active {
  transform: translateY(0px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  background: linear-gradient(135deg, #d1542f, #ff5e00) !important;
    color: #fff !important;
    border-radius: 5px !important;

}


body .bg-gradient-primary {
  background: linear-gradient(135deg, #d1542f, #ff5e00) !important;
    color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}


.btn-primary {
  background-color: #ff5e00 !important;
  color: #fff !important;
  font-weight: 500 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease-in-out !important;
  border: #fff !important;
}

body .bg-primary {
  background-color: #ff5e00 !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.btn-gradient-danger {
  background: linear-gradient(135deg, #ff7373, #ff0059) !important;
  color: #fff !important;
  font-weight: 500;
  border: none;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}

.btn-gradient-danger:hover {
  background: linear-gradient(135deg, #b71c1c, #c51162) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  color: #fff !important;
}

.btn-gradient-danger:active {
  transform: translateY(0px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


body table th,
body table td {
  background-color: #fdfdff !important;
  color: #3e3e3e !important;
  font-size: 14px !important;
  vertical-align: middle !important;
  border-color: #dee2e6 !important;
  padding: 0.75rem !important;
}

body .modal-body{
  background-color: #fdfdff !important;
  color: #3e3e3e !important;
  font-size: 14px !important;
  padding: 1.5rem !important;
}


.loader-file-upload {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side, #000 90%, #0000);
  background:
    var(--_g) 0% 50%,
    var(--_g) 50% 50%,
    var(--_g) 100% 50%;
  background-size: calc(100%/3) 50%;
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%
  }

  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%
  }

  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%
  }

  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%
  }
}

