/* =============================== FILTER BAR – FINAL POLISHED ================================ */ .jenwa-filter-bar { display: flex; justify-content: space-between; align-items: flex-end; padding: 24px 0; border-bottom: 1px solid #e5e5e5; max-width: 1200px; margin: 0 auto; } /* LEFT */ .jenwa-filter-left { width: 58%; } .jenwa-filter-left input { width: 100%; height: 44px; padding: 0 14px; border: 1px solid #d6d6d6; font-size: 14px; } .jenwa-result-count { margin-top: 6px; font-size: 13px; color: #666; } /* RIGHT */ .jenwa-filter-right { display: flex; align-items: flex-end; gap: 12px; } /* YEAR FILTER */ .jenwa-year-wrap { display: flex; flex-direction: column; gap: 6px; } .jenwa-filter-label { font-size: 12px; color: #777; } #jenwa-year-filter { height: 44px; padding: 0 14px; border: 1px solid #d6d6d6; font-size: 14px; background: #fff; min-width: 120px; } /* SEARCH BUTTON */ .jenwa-search-btn { height: 44px; padding: 0 22px; background: #0057b8; color: #fff; border: none; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; cursor: pointer; white-space: nowrap; } .jenwa-search-btn:hover { background: #003f88; } /* =============================== MOBILE ================================ */ @media (max-width: 768px) { .jenwa-filter-bar { flex-direction: column; align-items: stretch; gap: 18px; } .jenwa-filter-left, .jenwa-filter-right { width: 100%; } .jenwa-filter-right { justify-content: space-between; } #jenwa-year-filter, .jenwa-search-btn { width: 100%; } }


[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
    background-color: #DDE4F1;
    color: #000000;
    text-decoration: none;
}