/* Model Switcher Styles */
.model-switcher {
  padding: 10px 0;
}

.model-search {
  margin-bottom: 15px;
}

.model-search input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.model-list {
  max-height: 350px;
  overflow-y: auto;
  border: 1px solid #eee;
  border-radius: 4px;
}

.model-category {
  padding: 8px 12px;
  background-color: #f5f5f5;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  color: #333;
}

.model-item {
  padding: 8px 12px 8px 24px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background-color 0.2s;
}

.model-item:hover {
  background-color: #f0f0f0;
}

.model-item.active {
  background-color: #e3f2fd;
  font-weight: bold;
}

.model-item.active::before {
  content: "✓";
  position: absolute;
  margin-left: -15px;
  color: #2196f3;
}

.model-loading {
  padding: 15px;
  text-align: center;
  color: #666;
}
