.ccvc-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 6px;
  max-height: 450px;
  overflow-y: auto;
  z-index: 9999;
}
/* When results are active */
.ccvc-search-results.active {
  display: block;
  border: 1px solid #ddd; /* 🟢 add border only when active */
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.ccvc-section { padding: 5px 0; margin:0 !important;}
.ccvc-title {
  font-weight: 600;
  font-size: 13px;
  color: #666;
  padding: 5px 10px;
  border-bottom: 1px solid #eee;
  background: #fafafa;
}

.ccvc-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  text-decoration: none;
  color: #222;
  transition: background 0.2s;
}
.ccvc-result-item:hover { background: #f7f7f7; }
.ccvc-result-item img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}



.ccvc-search-results {
    top: 50px;
}
.form-control:focus {
    background-color: inherit !important;
    border-color: #f6a118 !important;
    outline: none !important;
    box-shadow: none !important;
}
.ccvc-search-results {
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.15s ease;
}
.ccvc-search-results.active {
  opacity: 1;
  transform: translateY(0);
}
