/* Global Select2 custom styles for consistent UI across the app */
/* Based on admin inline styles — placed here for reuse on any layout */
.select2-container--default .select2-selection--single {
    height: 42px;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background-color: #ffffff;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #374151;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.select2-container--default .select2-selection--single:hover {
    border-color: #9ca3af;
}
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #374151;
    line-height: 40px;
    padding: 0;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #9ca3af;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
    right: 0.75rem;
    top: 1px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #6b7280 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    height: 0;
    left: 50%;
    margin-left: -5px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #6b7280 transparent;
    border-width: 0 5px 5px 5px;
}
.select2-dropdown {
    position: absolute; /* ensure dropdown positioned relative to body */
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin-top: 4px;
    z-index: 9999;
}
.select2-container--default .select2-results__option {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: #374151;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #eff6ff;
    color: #1e40af;
}
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #dbeafe;
    color: #1e40af;
}
.select2-container--default .select2-search--dropdown .select2-search__Field,
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    margin: 0.5rem;
    width: calc(100% - 1rem);
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}
.select2-container--default .select2-selection--multiple {
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background-color: #ffffff;
    min-height: 42px;
    padding: 0.25rem 0.5rem;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 0.25rem;
    color: #1e40af;
    font-size: 0.75rem;
    margin: 0.125rem 0.25rem 0.125rem 0;
    padding: 0.125rem 0.5rem;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #3b82f6;
    cursor: pointer;
    font-weight: bold;
    margin-right: 0.25rem;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #1d4ed8;
}

/* Utility: make Select2 elements match form-control width by default */
.select2-container {
  width: 100% !important;
}

/* When Select2 is open, ensure the dropdown isn't affected by parent transforms */
.select2-container--open .select2-dropdown {
    transform: none !important;
}
