/* Global font */
body, * {
  font-family: Helvetica, Arial, sans-serif;
}

/* Sidebar */
#sidebar {
  width: 260px;
  min-height: 100vh;
  transition: width 0.2s ease;
}

#sidebar.collapsed {
  width: 0;
  overflow: hidden;
  padding: 0 !important;
}

#wrapper {
  min-height: 100vh;
}

#page-content-wrapper {
  min-width: 0;
}

/* Nav pills in sidebar */
#sidebar .nav-link {
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
}

#sidebar .nav-link.active {
  background-color: rgba(255, 255, 255, 0.15);
}

#sidebar .nav-link:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.08);
}

/* Cards */
.card {
  border-radius: 10px;
}

/* Table tweaks */
.table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Inactive product cards */
.opacity-60 {
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  #sidebar {
    position: fixed;
    z-index: 1040;
    height: 100%;
  }

  #sidebar.collapsed {
    width: 0;
  }
}
