/* Button Group Styling */
.button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  margin-top: 15px;
}

/* Small Button Design */
.button-group .theme-btn {
  min-width: 105px;
  height: 38px;
  line-height: 38px;
  padding: 0 14px;
  font-size: 13px;
  border-radius: 6px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Text inside button */
.button-group .btn-title {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .button-group {
    gap: 6px;
  }

  .button-group .theme-btn {
    min-width: 95px;
    height: 34px;
    line-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .button-group .btn-title {
    font-size: 12px;
  }
}



