/* Quiz Manager Admin Custom Styles */

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: #1a1d23 !important;
}

.card {
  background-color: #212529;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quiz-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.border-dashed {
  border-style: dashed !important;
}

#drop-zone {
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

#drop-zone.drag-over {
  background-color: rgba(13, 110, 253, 0.05) !important;
  border-color: #0d6efd !important;
}

.btn {
  transition: all 0.15s ease;
}

.breadcrumb {
  background: transparent;
}

pre {
  font-family: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
}

.table-dark {
  --bs-table-bg: #1a1d23;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1d23;
}

::-webkit-scrollbar-thumb {
  background: #495057;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6c757d;
}

@media (max-width: 575.98px) {
  .login-card, .profile-card {
    border: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
  }
}

.hover-bg-light:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
  transition: background-color 0.2s ease;
}

@media (max-width: 575.98px) {
  body {
    padding-bottom: 70px; /* Space for mobile bottom navbar */
  }
}

