.placeholder-img{color:#888}
.card.border-dashed{border-style: dashed}
body{background:#fff}

/* Category Card Styling */
.category-card {
  border: none;
  box-shadow: 0 2px 12px rgba(80,80,120,0.10);
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 24px rgba(80,80,120,0.18);
  z-index: 2;
}

.category-image,
.category-image-placeholder {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  display: block;
}

.category-card .card-body {
  padding: 1rem 0.5rem 0.7rem 0.5rem;
  text-align: center;
}

.category-card .card-title {
  font-weight: 700;
  color: #3a3a4a;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* Dropdown Menu Styling */
.dropdown-menu {
  max-height: 600px;
  overflow-y: auto;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}

.navbar-nav .dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
}

/* Nested Dropdown Support */
.dropend .dropdown-menu {
  margin-top: -0.5rem;
}

@media (max-width:576px){ 
  .display-6{font-size:1.6rem}
  .category-image,
  .category-image-placeholder {
    height: 120px;
  }
}

/* Section Headings */
.section-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #4f46e5;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 1px;
}

/* Button Styles */
.btn-success {
  background: linear-gradient(90deg,#4f46e5 0%,#22d3ee 100%);
  border: none;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(80,80,120,0.10);
}
.btn-success:hover {
  background: linear-gradient(90deg,#22d3ee 0%,#4f46e5 100%);
  color: #fff;
}
}