/* ===== Polinasyon - styles.css v4.1 ===== */

html, body {
  background-color: #0f1115 !important;
  color: #e2e8f0 !important;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ===== Modül Kartları ===== */
.module-card {
  background: #181c24 !important;
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 16px;
  transition: all 0.22s ease;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.module-card:hover {
  border-color: rgba(245, 158, 11, 0.9);
  background: #1e232e !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.module-card:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* ===== Ana Menü Kartları ekstra vurgu ===== */
.main-menu-card {
  cursor: pointer;
}

/* ===== Header ===== */
#homeHeaderBtn {
  cursor: pointer;
  border: 1px solid rgba(245, 158, 11, 0.4);
  background: #181c24 !important;
  transition: all 0.22s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

#homeHeaderBtn:hover {
  border-color: rgba(245, 158, 11, 0.9);
  background: #1e232e !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* ===== İçerik Panelleri ===== */
.content-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.content-panel.active {
  display: block;
  opacity: 1;
}

/* ===== Dashboard gizleme (opsiyonel) ===== */
.dashboard-view.hidden-view,
#dashboardView.hidden-view {
  display: none !important;
}

/* ===== Focus (klavye erişilebilirliği) ===== */
.module-card:focus-visible,
#homeHeaderBtn:focus-visible,
button:focus-visible,
label:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 3px;
}

/* ===== Küçük yardımcı stiller ===== */
.rounded-2xl {
  border-radius: 16px;
}

/* Yedek butonlarındaki label için */
label.module-card {
  user-select: none;
}
