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

/* Auto Shop Login Styles */
.auto-shop-login {
    max-width: 480px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.auto-shop-login .login-header {
    margin-bottom: 2rem;
}

.auto-shop-login .login-header h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.auto-shop-login .form-control {
    height: 48px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.auto-shop-login .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.auto-shop-login .signin-btn {
    height: 48px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auto-shop-login .logon-tab {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.auto-shop-login .logon-tab a {
    color: #666;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
}

.auto-shop-login .logon-tab a.active {
    color: #007bff;
    border-bottom-color: #007bff;
}

.auto-shop-login .custom-checkbox .custom-control-label {
    color: #666;
}

.auto-shop-login .btn-forgot {
    color: #007bff;
    text-decoration: none;
}

.auto-shop-login .btn-forgot:hover {
    text-decoration: underline;
}