/* User center CSS variables */
:root {
  --user-avatar-size: 80px;
  --user-avatar-size-sm: 48px;
}

/* Heading hierarchy within user content */
.content h2.page-header {
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 2px solid var(--primary-color);
}
.content h3 {
  font-size: 18px;
  font-weight: 600;
}
.content h4 {
  font-size: 16px;
  font-weight: 600;
}

.user-baseinfo {
  margin-bottom: 0;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
}
.user-baseinfo-top {
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
  margin-bottom: 12px;
}

/* Basic info grid */
.basicinfo .row > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.basicinfo-label {
  font-size: 12px;
  color: #999;
}
.basicinfo-value {
  font-size: 14px;
  color: #333;
}
.basicinfo-value a {
  color: var(--primary-color);
  text-decoration: none;
}
.basicinfo-value a:hover {
  text-decoration: underline;
}

/* Avatar sizing */
.user-center .avatar-text,
.user-center .avatar-img {
  height: var(--user-avatar-size-sm);
  width: var(--user-avatar-size-sm);
  border-radius: 50%;
  line-height: var(--user-avatar-size-sm);
  font-size: calc(var(--user-avatar-size-sm) * 0.46);
}
.user-center .avatar-img {
  font-size: 0;
}
.user-center .avatar-img img {
  height: var(--user-avatar-size-sm);
  width: var(--user-avatar-size-sm);
  border-radius: 50%;
}
@media (min-width: 768px) {
  .user-center .avatar-text,
  .user-center .avatar-img {
    height: var(--user-avatar-size);
    width: var(--user-avatar-size);
    border-radius: 50%;
    line-height: var(--user-avatar-size);
    font-size: calc(var(--user-avatar-size) * 0.46);
  }
  .user-center .avatar-img img {
    height: var(--user-avatar-size);
    width: var(--user-avatar-size);
    border-radius: 50%;
  }
}

/* Sidenav */
.sidebar-toggle {
  display: none;
}
@media (max-width: 991px) {
  .sidenav {
    position: fixed;
    top: 0;
    z-index: 1029;
    height: calc(100vh);
    padding: 20px 0 20px 0;
    min-width: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 250px;
    left: -250px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .sidebar-toggle {
    display: block;
    position: fixed;
    right: 20px;
    bottom: 70px;
    border-radius: 50%;
    background: #eee;
    font-size: 22px;
    padding: 10px;
    line-height: 30px;
    height: 50px;
    width: 50px;
    text-align: center;
    z-index: 999999;
  }
}
body.sidebar-open .sidenav {
  left: 0;
  width: 250px;
  box-shadow: 0 6px 27px rgba(0, 0, 0, 0.075);
}
body.sidebar-open .sidebar-toggle i:before {
  content: "\f00d";
}
/*# sourceMappingURL=user.css.map */
