// Import variables and mixins @import "variables"; @import "mixins"; // Base styles for Select2 .select2-container { font-size: 14px; line-height: 1.5; color: #333; .select2-selection { border: 1px solid #ccc; border-radius: 4px; padding: 6px 12px; &:hover { border-color: #999; } } .select2-selection__arrow { height: 100%; width: 20px; background-color: #f8f9fa; } } // Dropdown styles .select2-dropdown { border: 1px solid #ccc; border-radius: 4px; background-color: #fff; .select2-results__option { padding: 8px 12px; &.select2-results__option--highlighted { background-color: #007bff; color: #fff; } } } // Custom theme overrides (e.g., for Bootstrap) .select2-bootstrap-theme { .select2-container { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } }