/* === BILIRKISI SPECIALTY & PROFESSION PICKERS === */
.specialty-tree-picker,
.profession-custom-picker {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 16px;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.specialty-picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.specialty-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
}

.specialty-limit-note {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.specialty-selected-tags,
.selected-profession-display {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    min-height: 42px;
    align-items: center;
    padding: 10px 12px;
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: 8px;
}

.no-selection-hint {
    font-size: 12.5px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.active-profession-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
}

.btn-clear-prof {
    background: transparent;
    border: none;
    color: #dc2626;
    cursor: pointer;
    font-size: 14px;
    padding: 2px 6px;
    transition: transform 0.15s;
}

.btn-clear-prof:hover {
    transform: scale(1.15);
}

.specialty-tag {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
    line-height: 1.3;
}

.specialty-tag .remove-tag {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 12px;
    padding: 0;
    opacity: 0.8;
    display: flex;
    align-items: center;
    transition: opacity 0.15s;
}

.specialty-tag .remove-tag:hover {
    opacity: 1;
    color: #fca5a5;
}

.specialty-search-box {
    position: relative;
    margin-bottom: 14px;
}

.specialty-search-box i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
}

.specialty-search-box input {
    padding-left: 38px !important;
    height: 42px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
}

.specialty-tree-list,
.profession-groups-list {
    max-height: 420px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px;
    background: #ffffff;
}

.specialty-category-group {
    border-bottom: 1px solid #f1f5f9;
    padding: 6px 0;
}

.specialty-category-group:last-child {
    border-bottom: none;
}

.specialty-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: #f8fafc;
    border-radius: 6px;
    transition: background 0.15s;
}

.specialty-cat-header:hover {
    background: #f1f5f9;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input[type="checkbox"] {
    width: 17px !important;
    height: 17px !important;
    cursor: pointer;
    accent-color: #2563eb;
    margin: 0 !important;
}

.cat-title {
    font-weight: 700;
    font-size: 13.5px;
    color: #1e293b;
}

.toggle-cat-btn {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 12px;
    transition: color 0.15s;
}

.toggle-cat-btn:hover {
    color: #0f172a;
}

.specialty-sub-list {
    display: none;
    padding: 6px 12px 6px 28px;
    flex-direction: column;
    gap: 6px;
}

.specialty-sub-list.expanded {
    display: flex;
}

.sub-cat-label {
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.15s;
}

.sub-cat-label:hover {
    background: #f1f5f9;
}

.sub-cat-label.selected {
    background: #eff6ff;
}

.sub-title {
    font-size: 13px;
    color: #334155;
    line-height: 1.35;
}

.sub-cat-label.selected .sub-title {
    color: #1e40af;
    font-weight: 600;
}

/* Profession Cards & Grid */
.prof-group-card {
    margin-bottom: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.prof-group-header {
    background: #f8fafc;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 13.5px;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prof-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 8px;
    padding: 12px;
}

.prof-item-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    color: #334155;
    text-align: left;
    cursor: pointer;
    transition: all 0.15s ease;
}

.prof-item-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a;
}

.prof-item-btn.selected {
    background: #eff6ff;
    border-color: #2563eb;
    color: #1e40af;
    font-weight: 600;
}

.no-search-results {
    text-align: center;
    padding: 30px 15px;
    color: #94a3b8;
    font-size: 13.5px;
}

.profile-specialty-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    font-size: 12.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    margin: 3px 2px;
}