::-webkit-scrollbar {
  display: none !important;
}

body {
  background-color: #f1f1f1 !important;
}

.blue-light-bg {
  background-color: #f1f5f9 !important;
}

.my-header-bg {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.pill-width {
  width: 9rem;
}

.form-control {
  color: #000000 !important;
}

.form-select {
  color: #000000 !important;
}

.sm-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
}

.fs-7 {
  font-size: 0.65rem !important;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 25px;
  padding: 40px;
}

.app-card {
  height: 110px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.app-card i {
  font-size: 26px;
  margin-bottom: 8px;
}

.app-card:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* Colors matching your image */
.bg-orange {
  background: #f59e0b;
}
.bg-teal {
  background: #14b8a6;
}
.bg-yellow {
  background: #eab308;
}
.bg-red {
  background: #ef4444;
}
.bg-brown {
  background: #92400e;
}
.bg-green {
  background: #22c55e;
}
.bg-blue {
  background: #3b82f6;
}
.bg-purple {
  background: #6366f1;
}
.bg-pink {
  background: #f43f5e;
}
.bg-lightblue {
  background: #38bdf8;
}
.bg-darkred {
  background: #b91c1c;
}
.bg-olive {
  background: #84cc16;
}
