
.cba-gallery-container {
  padding: 20px;
}
.cba-gallery-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.cba-gallery-tab {
  padding: 10px 15px;
  background: #eee;
  cursor: pointer;
}
.cba-gallery-tab.active {
  background: #333;
  color: #fff;
}
.cba-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.cba-gallery-grid img {
  width: 100%;
  height: auto;
  cursor: pointer;
}
