/* 모든 단일 선택 콤보박스의 화살표 위치와 텍스트 여백을 통일한다. */
select:not([multiple]) {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 2.35rem !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364758b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.8rem center !important;
    background-size: 0.86rem 0.86rem !important;
}

select:not([multiple]):disabled {
    cursor: not-allowed;
    opacity: 0.68;
}

@media (max-width: 768px) {
    select:not([multiple]) {
        padding-right: 2.25rem !important;
        background-position: right 0.72rem center !important;
    }
}
