/* ============================================
   Центр управления «Мир Знаний» — dashboard.css
   ============================================ */

html {
  scroll-behavior: smooth;
}

::selection {
  background-color: rgba(242, 101, 34, 0.2);
}

/* ---- Chart containers ---- */
.chart-container {
  position: relative;
  height: 260px;
  width: 100%;
}

.chart-container-sm {
  height: 220px;
}

.chart-container-xs {
  height: 140px;
}

@media (max-width: 640px) {
  .chart-container {
    height: 220px;
  }
  .chart-container-sm {
    height: 180px;
  }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #FFF9F0;
}

::-webkit-scrollbar-thumb {
  background: #d1c7ba;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b8a998;
}

/* ---- Table styles ---- */
table {
  border-collapse: collapse;
}

/* ---- Auth modal ---- */
#auth-modal input:focus {
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.15);
}

/* ---- Smooth transitions ---- */
.bg-white.rounded-2xl {
  transition: box-shadow 0.2s ease;
}

/* ---- Print ---- */
@media print {
  #auth-modal { display: none !important; }
  #dashboard-content { display: block !important; }
  header { position: static; }
}
