/* 管理员风格布局样式 */
.admin-style-layout {
  min-height: calc(100vh-80px);
  background: #f6f6f6;
  position: relative;
  overflow: hidden;
}

/* 左侧导航菜单样式 */
#account-column-left {
  width: 235px;
  height: calc(100vh - 80px);
  overflow: auto;
  background-color: #242d37;
  position: fixed;
  top: 80px;
  left: 0;
  z-index: 1000;
}

#account-navigation {
  text-transform: uppercase;
  padding: 22px 15px 15px 15px;
  color: #FFFFFF;
  background: #19222E;
  display: block;
  font-weight: 600;
}

#account-menu, #account-menu ul, #account-menu li {
  padding: 0;
  margin: 0;
  list-style: none;
}

#account-menu {
  margin-bottom: 25px;
}

#account-menu li a {
  text-decoration: none;
  display: block;
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 1px solid #2b3642;
  font-size: 14px;
  color: #b3cbdd;
  transition: all 0.3s ease;
}

#account-menu li a:hover {
  background-color: #1B2127;
  color: #FFFFFF;
}

#account-menu li a > i {
  font-size: 16px;
  width: 18px;
  margin-right: 8px;
}

#account-menu li.active > a {
  color: #086AD8;
  background-color: #171b21;
}

/* 主内容区域样式 */
#account-content {
  margin-left: 235px;
  min-height: calc(100vh - 80px);
  background: #f6f6f6;
  padding-bottom: 60px; /* 为footer留出空间 */
}

#account-content .page-header {
  background: #fff;
  border-bottom: 1px solid #d8d8d8;
  box-shadow: 0px 0px 3px #CCCCCC;
  margin-bottom: 20px;
}

#account-content .page-header .container-fluid {
  padding: 20px;
}

#account-content .page-header h1 {
  margin: 0;
  color: #545454;
  font-size: 24px;
  font-weight: 600;
}

#account-content .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 10px 0 0 0;
}

#account-content .breadcrumb-item {
  color: #6c757d;
}

#account-content .breadcrumb-item a {
  color: #086AD8;
  text-decoration: none;
}

#account-content .breadcrumb-item a:hover {
  text-decoration: underline;
}

#account-content .container-fluid {
  padding: 20px;
}

/* 卡片样式优化 */
#account-content .card {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

#account-content .card-header {
  background: #086AD8;
  color: #fff;
  padding: 12px 20px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px 4px 0 0;
}

#account-content .card-header i {
  margin-right: 8px;
}

#account-content .card-body {
  padding: 20px;
  background: #fff;
}

/* 响应式设计 */
@media (max-width: 991px) {
  #account-column-left {
    left: -235px;
    transition: left 0.3s ease;
  }

  #account-column-left.active {
    left: 0;
  }

  #account-content {
    margin-left: 0;
  }
}

/* 按钮样式 */
#account-content .btn-primary {
  background-color: #086AD8;
  border-color: #086AD8;
}

#account-content .btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}