.ksi-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.ksi-col {
  flex: 1;
  min-width: 250px;
}
/* Hide the browser’s ugly default "No file chosen" */
input[type="file"] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

/* Custom styled button */
.custom-file {
  display: inline-block;
  background: #444;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;

}

/* Custom placeholder */
.file-placeholder {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* Center the whole upload section */
.upload-div p {
  text-align: center;
}

#product-fields{
  position: relative;
}
.product-row {
  display: flex;
  gap: 10px;
 margin: 15px 0px;
  align-items: center;
}
.product-row input[type="text"],
.product-row input[type="number"] {
  flex: 1;
}
.remove-product {
  position: absolute !important;
  right: 7px;
padding: 0 !important;
  color: red !important;
  background: none !important;
  bottom: -30px;
    cursor: pointer;
}
#add-product {
  margin-top: 8px;
  padding: 8px 12px;
  border: none;
  background: #2b6cb0;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}
.ksi-phone {
  display: flex;
  gap: 6px;
}
.ksi-phone select {
  max-width: 130px;
}
.captcha-container {
  margin: 20px 0;
}

.captcha-code-box {
  width: 40%;
  background: #f9f9f9;
  border: 1px solid #ccc;
  text-align: center;
  padding: 5px;
  font-size: 26px;
  font-weight: bold;
  font-family: "Courier New", monospace;
  letter-spacing: 4px;
  color: #222;
  border-radius: 8px;
  user-select: none;
  /* prevent copy */
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.captcha-container input[type="text"] {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.captcha-container input[type="text"]:focus {
  border-color: #498f27;
  outline: none;
  box-shadow: 0 0 3px rgba(73, 143, 39, 0.4);
}

.custom-file {
  background: #333;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
}

.custom-file input[type="file"] {
  display: none;
}

.file-placeholder {
  display: block;
  margin-top: 5px;
  color: #555;
  font-size: 0.9rem;
}

