/**
 * Button Group Shared Component Styles
 *
 * Minimal layout styles for responsive button display
 * Desktop/Tablet: Row layout
 * Mobile: Column layout
 */

/* Container styles */
.button-group-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

/* Mobile layout - stack buttons vertically */
@media (max-width: 767px) {
  .button-group-container {
    flex-direction: column;
  }
}

/* Screen reader only text for accessibility */
.button-group-container .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
