*{
  box-sizing:border-box;
  font-family:system-ui,sans-serif;
}

body{
  background:#f4f6f8;
  margin:20px;
}

/* SEARCH */
.search-section{
  background:#fff;
  padding:20px;
  max-width:600px;
  margin:20px auto;
  border-radius:14px;
  box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.search-section h2{
  text-align:center;
  margin-bottom:15px;
}

select,input,.btn-search{
  width:100%;
  padding:12px;
  margin-top:10px;
  border-radius:8px;
  border:1px solid #ccc;
}

.btn-search{
  background:#4CAF50;
  color:#fff;
  border:none;
  cursor:pointer;
}

/* ROLE BUTTON */
.role-box{
  display:flex;
  gap:15px;
  justify-content:center;
  margin-bottom:15px;
}

.role-btn{
  padding:15px 20px;
  font-size:18px;
  border:none;
  border-radius:8px;
  cursor:pointer;
  background:#ccc;
}

.role-btn.active{
  background:#2e7d32;
  color:#fff;
}

/* CATEGORY */
.home-category-section{
  padding:20px;
}

.section-heading{
  text-align:center;
  margin-bottom:15px;
}

.category-scroll{
  display:flex;
  gap:16px;
  overflow-x:auto;
}

.category-box{
  min-width:260px;
  background:#fff;
  padding:15px;
  border-radius:14px;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.category-box p{
  font-size:13px;
  color:#555;
}

/* SUB CATEGORY */
.sub-category{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.sub-item{
  text-align:center;
  text-decoration:none;
  color:#000;
  font-size:12px;
}

.sub-item img{
  width:42px;
  height:42px;
  border-radius:8px;
}

.no-sub{
  font-size:12px;
  color:#999;
}

/* QUICK LINKS */
.quick-categories{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  padding:15px;
}

.quick-categories a{
  background:#eaeaea;
  padding:8px 16px;
  border-radius:20px;
  text-decoration:none;
  color:#000;
  font-size:13px;
}
