/* Custom checkbox stil */
.form-check-input:checked {
  background-color: #E30B32 !important;
  border-color: #E30B32 !important;
}

.btn-primary {
  --bs-btn-color: #fff !important;
  --bs-btn-bg: #E30B32 !important;
  --bs-btn-border-color: #E30B32 !important;
  --bs-btn-hover-color: #fff !important;
  --bs-btn-hover-bg: #d3082b !important;
  --bs-btn-hover-border-color: #c50727 !important;
  --bs-btn-focus-shadow-rgb: 227, 11, 50 !important;
  --bs-btn-active-color: #fff !important;
  --bs-btn-active-bg: #c50727 !important;
  --bs-btn-active-border-color: #b30524 !important;
  --bs-btn-active-shadow: none !important;
  --bs-btn-disabled-color: #fff !important;
  --bs-btn-disabled-bg: #E30B32 !important;
  --bs-btn-disabled-border-color: #E30B32 !important;
}

/* Daha spesifik bir seçimci kullanarak geçersiz kılabilirsiniz */

.flatpickr-prev-month svg {
  position: relative;
  top: -10px;
}

.flatpickr-next-month svg {
  position: relative;
  top: -10px;
}

.cursor-pointer {
  cursor: pointer;
}

select.form-select {
  background-color: white !important;
}


header.fixed-top+main {
  padding-top: calc(1.5rem + 60px) !important;
}

/* Chrome, Safari, Edge, Opera */
.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.card-lg{
  min-height: calc(100vh - 150px);
}

.dz-message {
  display: flex;
  flex-direction: column;
  align-items: center;     /* YATAY ortalama */
  justify-content: center; /* DİKEY ortalama */
  text-align: center;      /* Yazıyı ortala */
  height: 100%;            /* Yükseklik önemli */
}


/*📌📌 Scroll BAr Ayarları 📌📌
/* Firefox */
.no-spinner {
  -moz-appearance: textfield;
}
/* Custom Scrollbar */
*::-webkit-scrollbar {
  width: 6px;
}
*::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  background: #f1f1f1;
}
/*📌📌 Scroll BAr Ayarları 📌📌