/* travel-list.css - CSS dari travel-list.blade.php */
.select2-container--default .select2-selection--multiple {
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    min-height: 42px;
    background-color: #ffffff;
    padding: 0.25rem;
}
.select2-container--default .select2-selection--multiple:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
    outline: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #3b82f6;
    border: none;
    border-radius: 0.375rem;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
    margin: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #ffffff;
    margin-right: 0.25rem;
    margin-left: 0.5rem;
    border: none;
    background: none;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    font-size: 1.1em;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #dbeafe;
}
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
    padding: 0.5rem 0;
}
.select2-container--default .select2-selection--multiple .select2-search__field {
    margin: 0;
    padding: 0.5rem 0;
    border: none;
    outline: none;
    background: transparent;
    color: #374151;
    font-size: 0.875rem;
    min-width: 120px;
}
.select2-container--default .select2-selection--multiple .select2-search__field::placeholder {
    color: #6b7280;
}
.select2-container--default .select2-results__option {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: #374151;
}
.select2-container--default .select2-results__option--highlighted {
    background-color: #dbeafe;
    color: #1e40af;
}
.select2-container--default .select2-results__option--selected {
    background-color: #3b82f6;
    color: #ffffff;
}
.select2-container--default .select2-selection--multiple .select2-selection__arrow {
    height: 40px;
    right: 8px;
    top: 1px;
}
.select2-container--default .select2-selection--multiple .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-selection__clear {
    color: #6b7280;
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 30px;
    margin-top: 8px;
    padding: 2px;
}
.select2-container--default .select2-selection__clear:hover {
    color: #374151;
}
@media (max-width: 768px) {
    .select2-container--default .select2-selection--multiple {
        min-height: 44px;
    }
    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
}
