/* Frontend search box (transparent background, white input, white button with blue text) */
.cv-search-wrap { width:100%; display:block; box-sizing:border-box; }
.cv-search-box {
  background: transparent;
  padding: 18px;
  border-radius: 12px;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.cv-search-input {
  flex: 1 1 auto;
  min-width: 220px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #ffffff;
  font-size: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03) inset;
}
.cv-search-input:focus { outline: none; box-shadow: 0 0 0 3px rgba(0,87,183,0.08); border-color: rgba(0,87,183,0.6); }
.cv-search-btn {
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: 10px;
  background: #ffffff;
  color: #0057b7;
  border: 1px solid rgba(0,87,183,0.12);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.cv-search-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,0.06); }
.cv-result-wrap { max-width:720px; margin: 18px auto; background: #fff; border-radius:8px; padding:18px; box-shadow: 0 6px 18px rgba(0,0,0,0.04); }
.cv-row { display:flex; justify-content:space-between; padding:6px 0; border-bottom:1px dashed rgba(0,0,0,0.04); }
.cv-row strong { font-weight:700; color:#233; }
.cv-row span { color:#111; }

/* small screens */
@media (max-width:600px) {
  .cv-search-box { flex-direction: column; gap: 10px; padding: 12px; }
  .cv-search-input { width:100%; }
  .cv-search-btn { width:100%; }
}
