/* =========================================================
 * VC Jyotish UI basic restore
 *  - tabs visible
 *  - inputs boundaries clear
 * ======================================================= */

.vc-tier-tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:12px 0;
}

.vc-tier-tab{
  display:inline-block;
  padding:10px 12px;
  border:1px solid #cfcfcf;
  background:#f7f7f7;
  border-radius:10px;
  cursor:pointer;
  user-select:none;
}

.vc-tier-tab.is-active{
  background:#111;
  color:#fff;
  border-color:#111;
}

.vc-tier-panel{
  display:none;
  padding:14px;
  border:1px solid #ddd;
  border-radius:12px;
  margin:10px 0;
  background:#fff;
}

.vc-field{
  margin:10px 0;
}

.vc-field label{
  display:block;
  font-size:14px;
  margin-bottom:6px;
}

.vc-field input,
.vc-field select,
.vc-field textarea{
  width:100%;
  padding:10px 10px;
  border:1px solid #bdbdbd;
  border-radius:10px;
  background:#fff;
  box-sizing:border-box;
}

.vc-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

.vc-actions button,
.vc-actions input[type="button"],
.vc-actions input[type="submit"]{
  padding:10px 14px;
  border-radius:10px;
  border:1px solid #333;
  background:#222;
  color:#fff;
  cursor:pointer;
}

.vc-actions button:disabled,
.vc-actions input[type="button"]:disabled,
.vc-actions input[type="submit"]:disabled{
  opacity:0.6;
  cursor:not-allowed;
}