/* Button tab row */
.mobile-button-tabs {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  gap: 5px;
}

/* Individual tab buttons */
.tab-btn {
  flex: 1;
  padding: 12px 7px;
  background-color: #29ABE2; /* Main color */
  color: #ffffff; /* Font color */
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover effect */
.tab-btn:hover {
  background-color: #F7931E; /* Hover color */
}

/* Show only on mobile and tablet */
@media (min-width: 1025px) {
  .mobile-button-tabs {
    display: none;
  }
	
}


