html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* ON/OFF toggle anahtarı (ör. firma bazlı ERP gönderimini açma/kapama) */
.nova-toggle {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 32px;
  border: none;
  border-radius: 999px;
  background-color: #dc3545;
  padding: 3px;
  cursor: pointer;
  transition: background-color .2s ease-in-out;
}
.nova-toggle.acik {
  background-color: #28a745;
}
.nova-toggle .nova-toggle-topu {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.35);
  transition: left .2s ease-in-out;
}
.nova-toggle.acik .nova-toggle-topu {
  left: 35px;
}
.nova-toggle-etiket {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: .65rem;
  font-weight: 700;
  color: #fff;
  user-select: none;
}
.nova-toggle .nova-toggle-etiket-on { left: 8px; display: none; }
.nova-toggle .nova-toggle-etiket-off { right: 7px; }
.nova-toggle.acik .nova-toggle-etiket-on { display: inline; }
.nova-toggle.acik .nova-toggle-etiket-off { display: none; }

/* Doğrulama ekranı: sürüklenebilir bölünmüş görünüm (form / PDF görüntüleyici) */
.nova-split {
  display: flex;
  align-items: stretch;
  height: 82vh;
  min-height: 480px;
}
.nova-split-sol {
  flex: 0 0 45%;
  min-width: 260px;
  overflow-y: auto;
  padding-right: .75rem;
}
.nova-split-cubuk {
  flex: 0 0 6px;
  background-color: #dee2e6;
  cursor: col-resize;
}
.nova-split-cubuk:hover {
  background-color: #adb5bd;
}
.nova-split-sag {
  flex: 1 1 auto;
  min-width: 260px;
  overflow: hidden;
}