/* Upload progress indicator */
.upload-progress {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #007cba;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  display: none;
}

/* Styles for uploading images in TinyMCE */
.tinymce img[data-uploading="true"] {
  opacity: 0.7;
  border: 2px dashed #ccc;
  background: #f9f9f9;
}

.tinymce img[data-uploading="true"]:hover {
  border-color: #007cba;
}

/* Web to Lead Form Styling */
.web-leads-forms {
  height: 34px !important;   /* same as Bootstrap input height */
  resize: none;   /* optional */
  overflow: hidden;
}
input[type=text] {
  background-color: #FAFAFA;
  border: 1px solid #cdd2d8;
}
.chk {
  display: flex;
  flex-wrap: wrap;   /* allow wrapping */
}

.chk .checkbox {
  width: 33.33%;     /* 3 per row */
  margin: 0;         /* remove default spacing */
}
#form_submit {
  width: 100% !important;
}