/* South Shore Ham Radio Club - Custom Button Styles */

/* Primary Button (flat theme) */
[class*="so-widget-sow-button-flat"] .sowb-button {
  background: #0369a1 !important;
  border-color: #0369a1 !important;
  color: #ffffff !important;
  padding: 14px 32px !important;
  border-radius: 6px !important;
  min-height: 44px !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s ease, box-shadow 0.2s ease !important;
}

[class*="so-widget-sow-button-flat"] .sowb-button.ow-button-hover:hover,
[class*="so-widget-sow-button-flat"] .sowb-button.ow-button-hover:active {
  background: #0284c7 !important;
  border-color: #0284c7 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.35) !important;
}

/* Secondary Button (wire/outline theme) */
[class*="so-widget-sow-button-wire"] .sowb-button {
  background: transparent !important;
  color: #0369a1 !important;
  border: 2px solid #0369a1 !important;
  padding: 12px 30px !important;
  border-radius: 6px !important;
  min-height: 44px !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease !important;
}

[class*="so-widget-sow-button-wire"] .sowb-button.ow-button-hover:hover,
[class*="so-widget-sow-button-wire"] .sowb-button.ow-button-hover:active {
  background: #0369a1 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.35) !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .sowb-button {
    width: 100%;
    text-align: center;
  }
}
