:root {
  --ac-accent: #ff7a00;
  --ac-dark: #111;
}

.autocore-categories a {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  margin-bottom: 6px;
  border-radius: 6px;
  color: var(--ac-dark);
  text-decoration: none;
  border: 1px solid #e5e5e5;
}
.autocore-categories a:hover {
  background: #f7f7f7;
}
.autocore-categories a.is-active {
  background: var(--ac-dark);
  color: #fff;
}

/* Search */
.autocore-search {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.autocore-search input {
  flex: 1;
  height: 48px;
  border-radius: 24px;
  border: 1px solid #ddd;
  padding: 0 18px;
}
.autocore-search button {
  height: 48px;
  padding: 0 26px;
  border-radius: 24px;
  background: var(--ac-accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
