/**
 * Muhasebe Panel - Proje Özel Stiller
 *
 * Bu dosya Vuexy core.css SONRASINDA yüklenir.
 * Sadece Vuexy'de olmayan proje özel bileşen stilleri burada tanımlanır.
 * Vuexy'nin kendi sınıfları (btn, card, alert, form-control vb.) dokunulmaz.
 */

/* ========================================================================
   Form Action Bar - Tüm form ekranlarında sağ altta kaydet butonu
   ======================================================================== */

.form-action-bar {
  position: sticky;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--bs-border-color);
  background-color: var(--bs-body-bg);
}

.form-action-bar__left {
  flex: 1;
  min-height: 1px;
}

.form-action-bar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.primary-save-button {
  min-width: 180px;
  font-weight: 600;
}

.primary-save-button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ========================================================================
   Logout Form - Dropdown içinde form stilini temizle
   ======================================================================== */

.logout-form {
  margin: 0;
}

/* ========================================================================
   Responsive
   ======================================================================== */

@media (max-width: 767.98px) {
  .form-action-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .form-action-bar__right {
    width: 100%;
    justify-content: stretch;
  }

  .form-action-bar__right .btn {
    flex: 1;
  }
}

/* ========================================================================
   Hidden Utility
   ======================================================================== */

.hidden {
  display: none !important;
}

/* ========================================================================
   Honeypot - CSP aktifken inline style calismaz, CSS ile gizle
   ======================================================================== */

#hpc {
  display: none !important;
}
