/* Override Selectize default theme - هماهنگ با رابط کاربری پروژه (clinicColor, border-gray, rounded-lg) */
.selectize-control {
    position: relative;
    width: 100%;
}
.selectize-control .selectize-input {
    border: 1px solid #d1d5db !important;
    border-radius: 0.5rem !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.875rem !important;
    background: #fff !important;
    min-height: 42px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.selectize-control .selectize-input.focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2) !important;
}
.selectize-dropdown {
    /* حتماً به‌صورت شناور روی layout و بدون جابه‌جایی عناصر صفحه */
    position: absolute !important;
    max-height: min(280px, 50vh) !important;
    max-width: 100% !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1) !important;
    background: #fff !important;
    /* unified z-index for selectize dropdowns: above content, below modals */
    z-index: 65 !important;
}
/* دراپ‌داون‌هایی که به body منتقل شده‌اند (مثلاً داخل مودال جستجوی هوشمند) */
body > .selectize-dropdown {
    z-index: 100001 !important;
}
.selectize-dropdown-content {
    overflow-y: auto !important;
    flex: 1;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0;
}
.selectize-dropdown .optgroup-header {
    padding: 6px 12px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #4b5563 !important;
    background: #f9fafb !important;
    border-bottom: 1px solid #e5e7eb !important;
}
.selectize-dropdown .optgroup:first-child .optgroup-header {
    border-top: none !important;
}
.selectize-dropdown .option,
.selectize-dropdown [data-selectable],
.selectize-dropdown .selectize-dropdown-emptyoptionlabel {
    padding: 8px 12px !important;
    font-size: 0.875rem !important;
    color: #374151 !important;
    cursor: pointer;
    transition: background 0.1s;
}
.selectize-dropdown .option:hover,
.selectize-dropdown [data-selectable]:hover {
    background: #eff6ff !important;
}
.selectize-dropdown .option.active,
.selectize-dropdown .active,
.selectize-dropdown [data-selectable].active,
.selectize-dropdown .selectize-dropdown-emptyoptionlabel.active {
    background: #1c3664 !important;
    color: #fff !important;
}
.selectize-dropdown .active.create {
    background: #1c3664 !important;
    color: #fff !important;
}
.selectize-dropdown-content::-webkit-scrollbar {
    width: 6px;
}
.selectize-dropdown-content::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px;
}
.selectize-dropdown-content::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}
.selectize-dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}
