/**
 * Shop by Date - Classic Themes Styles
 * 
 * Styles specific to classic WordPress themes (non-block themes)
 * Ensures all form fields and buttons have consistent height
 */

/* Classic themes only: Make all form fields and buttons the same height */
.woocommerce .sbd-date-filter-form .sbd-date-type,
.woocommerce .sbd-date-filter-form .sbd-date-input,
.woocommerce .sbd-date-filter-form .sbd-filter-button,
.woocommerce .sbd-date-filter-form .sbd-clear-button {
    height: 42px;
    box-sizing: border-box;
    line-height: 1.5;
    display: inline-block;
    vertical-align: middle;
}

.woocommerce .sbd-date-filter-form .sbd-date-type,
.woocommerce .sbd-date-filter-form .sbd-date-input {
    padding: 10px 12px;
}

.woocommerce .sbd-date-filter-form .sbd-filter-button,
.woocommerce .sbd-date-filter-form .sbd-clear-button {
    padding: 10px 20px;
    line-height: 22px;
    white-space: nowrap;
    overflow: visible;
    min-width: 180px;
}

/* Override flex shrink for buttons in button group on classic themes */
.woocommerce .sbd-button-group .sbd-filter-button,
.woocommerce .sbd-button-group .sbd-clear-button {
    flex: 0 1 auto;
    min-width: 180px;
    width: auto;
}
