body {
  font-family: 'Poppins', sans-serif;
  
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #ffffff; /* Red gradient */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.top-bar h4 {
  margin-top: 10px;
  margin-left: 45px;
}

.top-bar .profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

h4 {
color: #000;
text-align: center;
margin-bottom: 20px;
}

#hamburger {
      position: fixed;
      top: 15px;
      left: 250px;
      z-index: 1002;
      cursor: pointer;
      color: #000000;
      pointer-events: all; /* Ensures the button remains interactive */
  }

@media (max-width: 992px) {
  .dashboard-items {
      grid-column: span 1;
  }
}
.dropdown-menu {
  display: none; /* Prevent flickering */
}

.show .dropdown-menu {
  display: block;
}

.sidebar-divider {
height: 1px;
background-color: #6c757d;
margin: 5px 0;
}

.footer {
  background-color: #f1f1f1;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.footer p {
  margin: 0;
}

h2{
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: transparent;
  background-image: linear-gradient(to right, #f1c40f, #e67e22);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.5px black;
  text-align: center;
}

/* Form labels */
form .form-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: blue;
}

form .form-floating > label {
  font-size: 1.0rem !important;
  font-weight: 600 !important;
  color: blue !important;
}

/* Form inputs */
form .form-control, form .form-select {
  border: 2px solid #f1c40f;
  border-radius: 5px;
  padding: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
}

form .form-control:focus {
  border-color: #e67e22;
  box-shadow: 0 0 5px rgba(230, 126, 34, 0.5);
}

#pagination {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  max-width: 100%;
}

input[type=number].form-control::-webkit-inner-spin-button,
input[type=number].form-control::-webkit-outer-spin-button {
  -webkit-appearance: auto;
  margin: 0;
}

input[type=number].form-control {
  -moz-appearance: textfield; /* for Firefox */
}

.settings-btn {
  position: fixed;
  top: 70px;
  right: 20px;
  z-index: 1050;
  padding: 0;
  color: #333;
}

.settings-btn:hover {
  color: #007bff;
}
