body {
  background: #f4f7fb;
  color: #0f172a;
}
.user-dashboard-shell {
  max-width: 1320px;
  margin: 24px auto 0;
  padding: 0 24px 40px;
}
.user-dashboard {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.user-sidebar {
  width: 292px;
  flex-shrink: 0;
  position: sticky;
  top: 96px;
}
.user-main {
  flex: 1;
  min-width: 0;
}
.panel-surface {
  background: #fff;
  border: 1px solid #eaf0f7;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.06);
}
.page-panel {
  padding: 30px;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.panel-headline {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
}
.panel-subline {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 13px;
}
.sidenav-backdrop {
  display: none;
}
.sidenav {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.sidenav-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 18px 16px;
  border-bottom: 1px solid #eef3f8;
}
.sidenav-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(51, 112, 255, 0.18);
}
.sidenav-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidenav-user-name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}
.sidenav-user-sub {
  margin: 4px 0 0;
  font-size: 12px;
  color: #64748b;
}
.list-group {
  padding: 12px;
  margin: 0;
}
.list-group-heading {
  list-style: none;
  margin: 2px 0 8px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #94a3b8;
  text-transform: uppercase;
}
.list-group-item {
  border: none;
  margin: 0 0 6px;
  border-radius: 14px;
  background: transparent;
  padding: 0;
}
.list-group-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  color: #475569;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s ease;
}
.list-group-icon {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: #f3f6fc;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.list-group-text {
  flex: 1;
  font-weight: 600;
}
.list-group-arrow {
  color: #a1afc0;
  transition: transform .2s ease;
}
.list-group-item:hover a {
  background: #f7f9fd;
  color: #0f172a;
}
.list-group-item:hover .list-group-arrow {
  transform: translateX(2px);
}
.list-group-item.active a {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: #fff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
}
.list-group-item.active .list-group-icon {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}
.list-group-item.active .list-group-arrow {
  color: rgba(255, 255, 255, 0.92);
}
.sidebar-toggle {
  display: none;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #111827;
  color: #fff;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 16px;
  bottom: 22px;
  z-index: 1035;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.3);
}
.sidebar-toggle i {
  font-size: 18px;
}
body.sidebar-open {
  overflow: hidden;
}
@media (max-width: 991px) {
  .user-dashboard-shell {
    padding: 0 14px 24px;
    margin-top: 14px;
  }
  .user-dashboard {
    flex-direction: column;
    gap: 16px;
  }
  .user-sidebar {
    width: 100%;
    position: static;
  }
  .user-main {
    width: 100%;
  }
  .page-panel {
    padding: 18px;
    border-radius: 20px;
  }
  .panel-headline {
    font-size: 20px;
  }
  .sidebar-toggle {
    display: inline-flex;
  }
  .sidenav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(2, 8, 23, 0.45);
    opacity: 0;
    pointer-events: none;
    z-index: 1030;
    transition: opacity .25s ease;
  }
  .sidenav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 286px;
    border-radius: 0 24px 24px 0;
    transform: translateX(-100%);
    transition: transform .28s ease;
    z-index: 1031;
    overflow-y: auto;
  }
  body.sidebar-open .sidenav {
    transform: translateX(0);
  }
  body.sidebar-open .sidenav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  body.sidebar-open .sidebar-toggle i:before {
    content: "\f00d";
  }
}
/*# sourceMappingURL=user.css.map */
