/* assets/css/style.css */

/* -----------------------------------------
   Genel Ayarlar
----------------------------------------- */
body {
  background-color: #f8f9fa;
  color: #212529;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}


.hero-section {
  background-color: #0d6efd; /* Bootstrap primary */
  padding: 60px 0;
}

/* Label’ların rengi */
.hero-section .form-label {
  font-size: 0.85rem;
  color: #ffffff;
}

/* Input‐group plain hali */
.hero-section .input-group-text {
  background-color: #ffffff;
  border: 1px solid #ced4da;
  color: #0d6efd;
}

/* form-select ise sadece border eklensin, yüksekliği Bootstrap eşlesin */
.hero-section .form-select {
  border: 1px solid #ced4da;
  background-color: #ffffff;
}

/* Flatpickr input’larının stili */
.hero-section .flatpickr-date {
  border: 1px solid #ced4da;
  background-color: #ffffff;
}

/* Kullanılan iconlar için group-text hizalaması */
.hero-section .input-group-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Select2 container’ın input-group ile aynı yüksekliği alması */
.hero-section .select2-container--bootstrap-5 .select2-selection--single {
  height: calc(1.5em + 0.75rem + 2px);
  display: flex;
  align-items: center;
  border: 1px solid #ced4da;
  border-left: none;
  background-color: #ffffff;
  border-radius: 0 0.25rem 0.25rem 0;
}

/* Select2 içindeki metni dikey ortala */
.hero-section .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  line-height: calc(1.5em + 0.75rem);
  color: #495057;
  padding-left: 0.5rem;
}

/* Select2 ok ikonu hizalaması */
.hero-section .select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow {
  height: calc(1.5em + 0.75rem + 2px);
  top: 0.375rem;
  right: 0.75rem;
  width: 1.75rem;
}

/* Placeholder rengi */
.hero-section .select2-container--bootstrap-5 .select2-selection--single .select2-selection__placeholder {
  color: #6c757d;
}

/* Buton stilleri */
.hero-section .btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #212529;
  font-size: 1rem;
}
.hero-section .btn-warning:hover {
  background-color: #ffca2c;
  border-color: #ffca2c;
}

/* Checkbox label rengi */
.hero-section .form-check-label {
  color: #ffffff;
}

/* Responsive - Mobil ekranlarda tam genişlik */
@media (max-width: 576px) {
  .hero-section .input-group-text,
  .hero-section .form-select,
  .hero-section .flatpickr-date {
    height: calc(1.5em + 0.75rem + 2px) !important;
  }
}
.hero-form {
    background-color: rgb(255 255 255 / 68%) !important;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}