/* Advanced Filters - Apply and Clear Button Sizing */

/* Ensure Apply and Clear buttons have equal size */
.advanced-filters .btn-primary,
.advanced-filters .btn-outline-secondary {
  flex: 0 0 auto !important;
  min-width: 80px !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  white-space: nowrap !important;
}

/* Ensure buttons are same height */
.advanced-filters .btn {
  height: auto !important;
  line-height: 1.5 !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

/* Mobile responsive - buttons should still match */
@media (max-width: 575.98px) {
  .advanced-filters .btn-primary,
  .advanced-filters .btn-outline-secondary {
    min-width: 70px !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    font-size: 0.875rem !important;
  }
}

