:root {
  --sidebar-width: 240px;
}

body {
  background-color: #f4f6f9;
}

.app-sidebar {
  width: var(--sidebar-width);
  min-height: 100vh;
  background-color: #1c2331;
}

.app-sidebar .nav-link {
  color: #c7ccd6;
  padding: 0.65rem 1rem;
  border-radius: 0.375rem;
}

.app-sidebar .nav-link.active,
.app-sidebar .nav-link:hover {
  background-color: #2b3447;
  color: #fff;
}

.app-sidebar .brand {
  color: #fff;
  font-weight: 600;
  padding: 1rem;
  font-size: 1.1rem;
  border-bottom: 1px solid #2b3447;
}

.app-main {
  min-height: 100vh;
}

.app-topbar {
  background-color: #fff;
  border-bottom: 1px solid #e3e6ea;
}

.stat-card {
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.table-actions a,
.table-actions button {
  margin-right: 0.25rem;
}

#productSearchResults .product-result {
  cursor: pointer;
}

@media (max-width: 768px) {
  .app-sidebar {
    position: fixed;
    left: -240px;
    transition: left 0.2s ease;
    z-index: 1040;
  }

  .app-sidebar.show {
    left: 0;
  }

  .app-main {
    margin-left: 0;
  }
}
