h2.page-header {
  margin: 10px 0 25px 0;
  padding-bottom: 15px;
}
.user-baseinfo {
  margin-bottom: 25px;
}
.user-baseinfo table tr td {
  color: #999;
}
@media (min-width: 992px) {
  .user-center .avatar-text,
  .user-center .avatar-img {
    height: 150px;
    width: 150px;
    border-radius: 150px;
    line-height: 150px;
    font-size: 70px;
  }
  .user-center .avatar-img {
    font-size: 0;
  }
  .user-center .avatar-img img {
    height: 150px;
    width: 150px;
    border-radius: 150px;
  }
}
.sidebar-toggle {
  display: none;
}
@media (max-width: 991px) {
  .sidenav {
    position: fixed;
    top: 50px;
    z-index: 1029;
    height: calc(100vh - 50px);
    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;
  }
}
@media (min-width: 992px) {
    /* Desktop Fixed Layout - Flexbox Implementation */
    body, html {
        height: 100%;
        overflow: hidden;
    }

    .navbar-fixed-top {
        position: fixed;
        z-index: 1030;
    }

    /* Main wrapper */
    .content {
        height: 100%;
        padding-top: 50px; /* Header height */
        box-sizing: border-box;
        overflow: hidden; /* Prevent .content itself from scrolling */
    }

    /* Target the container inside .content */
    #content-container {
        width: 100%;
        max-width: 100%; /* Full width like admin backend */
        height: 100%;
        padding: 0;
        margin: 0;
    }

    /* Flex row */
    #content-container > .row {
        display: flex;
        height: 100%;
        margin: 0;
    }

    /* Sidebar Column */
    #content-container > .row > .col-md-2 {
        flex: 0 0 250px; /* Fixed width */
        width: 250px;
        height: 100%;
        overflow-y: auto; /* Independent Scroll */
        padding: 0;
        background-color: #f8f8f8;
        border-right: 1px solid #dee2e6;
    }

    /* Sidebar inner adjustments */
    .sidenav {
        position: static;
        width: 100%;
        border: none;
        box-shadow: none;
        margin-bottom: 0;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    /* Content Column */
    #content-container > .row > .col-md-10 {
        flex: 1;
        height: 100%;
        overflow-y: auto; /* Independent Scroll */
        padding: 20px;
    }
    
    /* Ensure footer doesn't break layout (optional, hide or place at bottom of content) */
    footer.footer {
        display: none; /* Hide footer in this full-screen layout or move it inside col-md-10 */
    }
}

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 */