.form-asap-form-multi-select .form-asap-trigger {
    border: 1px solid #e0e7f0;
    transition: all 0.3s ease;
    min-height: 37px;
    cursor: pointer;
    padding:.375rem .75rem
}

.form-asap-form-multi-select .form-asap-trigger.active {
    border-color: #2c6c7d;
    box-shadow: 0 0 0 0.25rem rgb(44 108 125 / 25%)
}

.form-asap-form-multi-select .form-asap-selected-items {
    min-height: 24px
}

.form-asap-form-multi-select .form-asap-selected-item {
    background: black;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: slideInScale 0.2s ease-out
}

.form-asap-form-multi-select .form-asap-selected-item .remove-btn {
    background: rgba(255,255,255,0.3);
    width: 18px;
    height: 18px;
    transition: all 0.2s ease;
    font-size: 12px
}

.form-asap-form-multi-select .form-asap-selected-item .remove-btn:hover {
    background: rgba(255,255,255,0.5)
}

.form-asap-form-multi-select .form-asap-placeholder {
    color: #6c757d
}


/* Modal specific styles */
.form-asap-modal .modal-body {
    padding: 0;
    max-height: 60vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.form-asap-search {
    padding: 16px;
    border-bottom: 1px solid #e9ecef;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.form-asap-options {
    flex: 1;
    overflow-y: auto;
    max-height: 400px;
}

.form-asap-option {
    padding: 12px 16px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.form-asap-option:hover {
    background: #f8f9fa;
}

.form-asap-option.selected {
    background: linear-gradient(135deg, #2c6c7d 0%, #245a68 100%);
    color: white
}

.form-asap-option .flag {
    width: 20px;
    height: 20px;
    font-size: 12px;
    background: #e9ecef;
    color: #495057
}

.form-asap-option.selected .flag {
    background: rgba(255,255,255,0.3);
    color: white
}

.form-asap-option .check-icon {
    margin-left: auto;
    opacity: 0;
    transition: opacity 0.2s ease
}

.form-asap-option.selected .check-icon {
    opacity: 1
}

.form-asap-no-results {
    padding: 1rem;
    color: #6c757d;
    text-align: center;
    font-style: italic;
}

.form-asap-clear-all {
    background: none;
    color: #dc3545;
    font-size: 14px;
    padding: 6px 12px;
    transition: all 0.2s ease;
    border: 1px solid #dc3545;
    border-radius: 6px;
}

.form-asap-clear-all:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}


@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.8)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

/* Custom scrollbar */
.form-asap-options::-webkit-scrollbar {
    width: 6px
}

.form-asap-options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px
}

.form-asap-options::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px
}

.form-asap-options::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8
}

/* Responsive design */
@media (max-width: 768px) {
    .form-asap-form-multi-select .form-asap-trigger {
        padding: 10px 12px;
        min-height: 44px
    }
    
    .form-asap-form-multi-select .form-asap-selected-item {
        font-size: 12px;
        padding: 3px 6px
    }
    
    .form-asap-modal .modal-body {
        max-height: 50vh;
    }
}