:root {
  --sidebar-width: 15rem;
}

body {
  font-family: 'Inter', sans-serif;
}

.wrapper {
  display: flex;
  min-height: 100vh;
}

.navbar-vertical {
  width: var(--sidebar-width);
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1030;
  overflow-y: auto;
}

.page-wrapper {
  margin-left: var(--sidebar-width);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-body {
  flex: 1;
}

.page-header {
  padding: 1.5rem 0 0.75rem;
}

.nav-link {
  border-radius: 0.375rem;
  margin-bottom: 0.125rem;
  transition: background-color 0.15s ease;
}

.card {
  border: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.card-header {
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.table > thead > tr > th {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--tblr-muted);
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.status-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

@media (max-width: 991.98px) {
  .navbar-vertical {
    position: relative;
    width: 100%;
    min-height: auto;
  }
  .page-wrapper {
    margin-left: 0;
  }
  .wrapper {
    flex-direction: column;
  }
}
