.elementor-10740 .elementor-element.elementor-element-50cec372{--display:flex;}/* Start custom CSS for container, class: .elementor-element-50cec372 *//* Shotigo JetForm Genel Stil */
.shotigo-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(1000px, 1fr));
  gap: 20px;
  padding: 30px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  max-width: 1000px;
  margin: auto;
  box-sizing: border-box;
}

/* JetForm iç satırlarını grid'e dahil et */
.shotigo-form > .jet-form-builder__row {
  display: contents;
}

/* Tüm input, select, textarea elemanları */
.shotigo-form input[type="text"],
.shotigo-form input[type="email"],
.shotigo-form input[type="date"],
.shotigo-form input[type="time"],
.shotigo-form input[type="number"],
.shotigo-form select,
.shotigo-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-sizing: border-box;
  font-family: inherit;
  background: #f9f9f9;
  transition: all 0.2s ease;
}

.shotigo-form input:focus,
.shotigo-form select:focus,
.shotigo-form textarea:focus {
  border-color: #C6FF00;
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(198, 255, 0, 0.3);
}

/* Checkbox alanlarını hizala */
.shotigo-form input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #1C1C1C;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.shotigo-form input[type="checkbox"]:checked {
  background-color: #C6FF00;
  border-color: #C6FF00;
}

.shotigo-form input[type="checkbox"]:checked::after {
  content: '✔';
  position: absolute;
  top: -2px;
  left: 3px;
  color: black;
  font-size: 14px;
}

/* Checkbox etiketleri */
.shotigo-form label {
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1C1C1C;
  margin-bottom: 4px;
}

/* Submit Butonu */
.shotigo-form .jet-form-builder__submit {
  grid-column: span 2;
  padding: 14px 30px;
  background: #C6FF00;
  color: #1C1C1C;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.shotigo-form .jet-form-builder__submit:hover {
  background: #a9e000;
  transform: translateY(-1px);
}

/* Geniş Elemanlar (örneğin Harita ve Açıklama alanı) */
.shotigo-form .full-width {
  grid-column: span 2;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .shotigo-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .shotigo-form .full-width {
    grid-column: span 1;
  }

  .shotigo-form .jet-form-builder__submit {
    grid-column: span 1;
  }
}/* End custom CSS */