/* 카테고리 버튼 기본 스타일 */
.category-button {
    background-color: white;
    border: 1px solid #d1d5db; /* gray-300 */
    color: #374151; /* gray-700 */
    transition: all 0.2s ease-in-out;
}
/* 선택된 카테고리 버튼 스타일 */
.category-button.active {
    background-color: #862633 !important;
    color: white !important;
    border-color: #862633 !important;
}
/* Safari/Firefox select normalizing */
.custom-select {
    -webkit-appearance: none; /* Safari */
    -moz-appearance: none;    /* Firefox */
    appearance: none;         /* Others */
    background-color: transparent; /* blend with parent bg */
    background-image: none;   /* remove native arrow on Safari */
}
/* Improve focus ring visibility inside rounded container */
.custom-select:focus {
    outline: none;
    box-shadow: none;
}