.cbb-container {
  display: flex;
  justify-content: space-around;
  background: #fff;
  border-top: 1px solid #ccc;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.cbb-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  padding: 5px;
  position: relative;
}

.cbb-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 3px;
}

.cbb-label {
  font-size: 12px;
  line-height: 1;
}

@media (max-width: 768px) {
  .cbb-label {
    display: none;
  }
}

/* Optional hover tooltip effect */
.cbb-button[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0.9;
  z-index: 10000;
}
