/* Library CSS - simplified for Bootstrap 5 dark mode (FE-006) */
/* Most dark mode styling now handled by Bootstrap 5's data-bs-theme="dark" */

/* Custom cursor */
body,
a {
  cursor: url("/static/maplestory.cur"), default;
}

/* Orange accent color for active states and hovers */
a:hover {
  color: #ff9900 !important;
}

.navbar-nav > .nav-item.active > .nav-link,
.dropdown-item.active {
  color: #ff9900 !important;
}

/* Table styling - use Bootstrap 5 table-dark and table-striped classes */
/* Just add subtle border styling */
.table {
  --bs-table-border-color: #444;
}

.table th {
  text-align: center;
}

/* Pagination active state with orange accent */
.pagination .page-item.active .page-link {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #ff9900;
}

/* Nav tabs with orange active state */
.nav-tabs .nav-link.active {
  color: #ff9900 !important;
  background-color: var(--bs-dark-bg-subtle);
  border-color: var(--bs-border-color);
}

/* Card styling - subtle rounded corners */
.card {
  border-radius: 12px;
}

/* Fix white background on embedded images (object tags) */
/* The object tag loads PNG images which may have browser default backgrounds */
object {
  background: transparent !important;
  color-scheme: dark;
}
