﻿/* ========================================
   现代化布局样式 - 左深右白 SaaS 风格
   Version: 1.0
   Date: 2025-12-03
   ======================================== */

/* ========== CSS 变量定义 ========== */
:root {
    /* 主色系 */
    --primary: #3B82F6;
    --primary-dark: #2563EB;
    --primary-light: #60A5FA;
    /* 字体颜色 */
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --text-tertiary: #94A3B8;
    --text-muted: #CBD5E1;
    /* 背景色 */
    --bg-base: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --bg-sidebar: #0F172A;
    /* 边框 */
    --border-color: #E5E7EB;
    --border-light: #F3F4F6;
    /* 圆角 */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    /* 阴影 */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.05);
    /* 间距 */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    /* 侧边栏 */
    --sidebar-width: 260px;
    /* 动画 */
    --transition: all 0.2s ease;
}

/* ========== 全局重置 ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== 主布局 ========== */
.layout {
  display: flex;
  min-height: 100vh;
  background: var(--bg-secondary);
}

/* ========== 侧边栏 ========== */
.sidebar {
  width: var(--sidebar-width);
  background: var(--bg-sidebar);
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
  border-right: 1px solid #2a2a2a;
}

.sidebar-logo {
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #2a2a2a;
  flex-shrink: 0; /* 防止被压缩 */
}

.nav-section {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 12px 12px 6px;
    flex: 1; /* 占据剩余空间 */
    overflow-y: auto; /* 允许垂直滚动 */
    overflow-x: hidden; /* 隐藏水平滚动 */
    min-height: 0; /* 重要：允许flex子项缩小 */
}

/* 美化滚动条 */
.nav-section::-webkit-scrollbar {
    width: 6px;
}

.nav-section::-webkit-scrollbar-track {
    background: transparent;
}

.nav-section::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.3);
    border-radius: 3px;
}

.nav-section::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 0.5);
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.45); /* 柔和灰 */
    border-radius: 999px;
}

    .sidebar-nav::-webkit-scrollbar-thumb:hover {
        background: rgba(148, 163, 184, 0.8);
    }

.sidebar-nav::-webkit-scrollbar-track {
   background: transparent;
}

.sidebar-nav {
    overflow-y: auto;
}

    .sidebar-nav::-webkit-scrollbar {
        width: 6px;
    }

.nav-item {
    padding: 8px 12px;
    margin: 2px 4px;
    border-radius: 10px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
}

    .nav-item:hover {
        background: #252525;
        color: #ffffff;
    }

    .nav-item.active {
        background: rgba(59,130,246,0.22);
        color: #60A5FA;
        font-weight: 600;
    }

.nav-spacer {
  display: none; /* 不再需要，因为 nav-section 已经占据了所有空间 */
}

.sidebar-footer {
  padding: 12px 8px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  border-top: 1px solid #2a2a2a;
  flex-shrink: 0; /* 防止被压缩 */
}

/* ========== 主内容区域 ========== */
.main {
  flex: 1;
  margin-left: var(--sidebar-width);
  padding: var(--spacing-2xl);
  background: var(--bg-secondary);
  min-height: 100vh;
}

/* ========== 页面头部 ========== */
.main-header {
  margin-bottom: var(--spacing-xl);
}

.main-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
  letter-spacing: -0.5px;
}

.main-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ========== 统计卡片网格 ========== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

@media (max-width: 1200px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  background: var(--bg-base);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
  letter-spacing: -0.5px;
}

.stat-desc {
  font-size: 12px;
  color: var(--text-tertiary);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  font-size: 24px;
}

.stat-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
}

.stat-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.stat-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #F97316;
}

.stat-icon.purple {
  background: rgba(168, 85, 247, 0.1);
  color: #A855F7;
}

/* ========== 卡片样式 ========== */
.card {
  background: var(--bg-base);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.card-header {
  padding: var(--spacing-lg);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.card-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

.card-body {
  padding: var(--spacing-lg);
}

/* ========== 表单样式 ========== */
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

@media (max-width: 1024px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
}

.required {
  color: #EF4444;
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-primary);
  transition: var(--transition);
  background: var(--bg-base);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-tip {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 6px;
}

.form-actions {
  display: flex;
  gap: var(--spacing-sm);
  padding-top: var(--spacing-md);
}

/* ========== 按钮样式 ========== */
.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-base);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--bg-tertiary);
  border-color: var(--text-tertiary);
}

/* ========== 标签页 ========== */
.tabs {
  display: flex;
  gap: var(--spacing-sm);
}

.tab-item {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.tab-item:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.tab-item.active {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  font-weight: 600;
}

/* ========== 表格样式 ========== */
.table-container {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table thead {
  background: var(--bg-tertiary);
}

.table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-color);
}

.table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-primary);
}

.table tbody tr:hover {
  background: var(--bg-secondary);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

/* ========== 徽章样式 ========== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.badge-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #2563EB;
}

.badge-green {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.badge-orange {
  background: rgba(249, 115, 22, 0.1);
  color: #EA580C;
}

.badge-red {
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
}

.badge-gray {
  background: rgba(148, 163, 184, 0.1);
  color: #64748B;
}

.badge-purple {
  background: rgba(139, 92, 246, 0.1);
  color: #7C3AED;
}

/* ========== 空状态 ========== */
.empty-state {
  text-align: center;
  padding: var(--spacing-2xl);
  color: var(--text-tertiary);
}

.empty-icon {
  font-size: 48px;
  margin-bottom: var(--spacing-md);
  opacity: 0.5;
}

.empty-text {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ========== 分页 ========== */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-lg);
}

.pagination-btn {
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-base);
  color: var(--text-primary);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.pagination-btn:hover {
  background: var(--bg-tertiary);
  border-color: var(--primary);
}

.pagination-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

/* ========== 响应式 ========== */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  
  .main {
    margin-left: 0;
    padding: var(--spacing-lg);
  }
  
  .main-title {
    font-size: 24px;
  }
  
  .stat-value {
    font-size: 28px;
  }
}

/* ========== 工具类 ========== */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }

/* 确保 hidden 具有最高优先级 */
.hidden {
  display: none !important;
}

/* ===========================
   蓝白清爽 SaaS 风侧边栏
   =========================== */

:root {
    --sidebar-bg: #ffffff;
    --sidebar-border: #e5e7eb;
    --sidebar-text: #4b5563;
    --sidebar-text-light: #9ca3af;
    --sidebar-hover: #f1f5f9;
    --sidebar-active-bg: #e0edff;
    --sidebar-active-text: #2563eb;
}

/* 侧边栏背景 */
.sidebar {
    background: var(--sidebar-bg);
    border-right: 1px solid var(--sidebar-border);
}

/* logo */
.sidebar-logo {
    color: #111827;
    border-bottom: 1px solid var(--sidebar-border);
}

/* 分组标题 */
.nav-section {
    font-size: 11px;
    font-weight: 600;
    color: var(--sidebar-text-light);
    margin-top: 16px;
    margin-bottom: 6px;
    padding-left: 14px;
}

/* 菜单项 */
.nav-item {
    padding: 8px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--sidebar-text);
    transition: 0.15s;
}

    /* 悬停 */
    .nav-item:hover {
        background: var(--sidebar-hover);
        color: #111827;
    }

    /* 选中状态 */
    .nav-item.active {
        background: var(--sidebar-active-bg);
        color: var(--sidebar-active-text);
        font-weight: 600;
    }

/* 滚动条（浅灰） */
.sidebar-nav::-webkit-scrollbar-thumb {
    background: #cbd5e1;
}

/* ========== 快速操作 ========== */
.quick-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.quick-action-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.quick-action-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: var(--transition);
}

.quick-action-item:hover .quick-action-icon {
    transform: scale(1.1);
}

.quick-action-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

/* ========== 活动列表 ========== */
.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.activity-item:hover {
    background: var(--bg-secondary);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.activity-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ========================================
   📱 移动端适配样式
   适配屏幕宽度 ≤ 768px
   ======================================== */

/* 移动端菜单按钮 (默认隐藏，移动端显示) */
.mobile-menu-button {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1100;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 12px;
    background: #FFFFFF;
    color: #0F172A;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-button:hover {
    background: #F8FAFC;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.mobile-menu-button:active {
    transform: scale(0.95);
}

/* 遮罩层 (默认隐藏) */
#sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#sidebar-overlay.overlay-active {
    display: block;
    opacity: 1;
}

/* 禁止页面滚动 (当侧边栏展开时) */
body.no-scroll {
    overflow: hidden;
}

/* ========================================
   移动端底部导航栏
   ======================================== */
.mobile-bottom-bar {
    display: none;
}

/* ========================================
   移动端媒体查询 (≤ 768px)
   ======================================== */
@media (max-width: 768px) {
    /* 隐藏顶部菜单按钮（使用底部导航代替） */
    .mobile-menu-button {
        display: none !important;
    }

    /* 显示底部导航栏 */
    .mobile-bottom-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 60px;
        display: flex;
        background: #FFFFFF;
        border-top: 1px solid #E5E7EB;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
        z-index: 9999;
        padding: 0;
    }

    .mobile-bottom-btn {
        flex: 1;
        border: none;
        background: transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 8px 4px;
        margin: 0;
        cursor: pointer;
        color: #6B7280;
        font-size: 12px;
        transition: all 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-bottom-btn svg {
        stroke: currentColor;
        transition: all 0.2s ease;
    }

    .mobile-bottom-btn.active {
        color: #3B82F6;
        font-weight: 600;
    }

    .mobile-bottom-btn.active svg {
        stroke: #3B82F6;
    }

    .mobile-bottom-btn:active {
        background: #F3F4F6;
        transform: scale(0.95);
    }

    /* 侧边栏默认隐藏 (向左移出屏幕) */
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: none;
    }

    /* 侧边栏展开状态 */
    .sidebar.sidebar-active {
        transform: translateX(0);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    }

    /* 主内容区域 */
    .main {
        margin-left: 0;
        width: 100%;
        padding: 24px 16px 80px 16px; /* 顶部16px，底部留出底部导航栏空间 */
    }

    /* 调整卡片内边距 */
    .card {
        border-radius: 12px;
    }

    .card-body {
        padding: 16px;
    }

    /* 调整表格样式 (移动端) */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table {
        min-width: 600px; /* 防止表格过窄 */
    }

    /* 调整按钮组 */
    .button-group {
        flex-direction: column;
        gap: 8px;
    }

    .button-group .btn {
        width: 100%;
    }

    /* 调整统计卡片网格 */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* 调整头部标题 */
    .main-header {
        margin-bottom: 16px;
    }

    .main-title {
        font-size: 20px;
    }

    .main-subtitle {
        font-size: 13px;
    }

    /* 调整表单元素 */
    .form-group {
        margin-bottom: 16px;
    }

    /* 调整模态框 */
    .modal-content {
        width: 95%;
        max-width: none;
        margin: 20px auto;
    }

    /* 页脚样式调整 */
    footer {
        padding: 16px 0;
        font-size: 12px;
    }

    footer div {
        margin-bottom: 8px;
    }
}

/* ========================================
   平板适配 (768px - 1024px)
   ======================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    /* 缩小侧边栏宽度 */
    .sidebar {
        width: 220px;
    }

    .main {
        margin-left: 220px;
        padding: 32px 24px;
    }

    /* 调整卡片网格 */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   超小屏幕适配 (≤ 480px)
   ======================================== */
@media (max-width: 480px) {
    /* 进一步缩小内边距 */
    .main {
        padding: 20px 12px 80px 12px; /* 顶部20px，底部留出底部导航栏空间 */
    }

    .card-body {
        padding: 12px;
    }

    /* 调整字体大小 */
    .main-title {
        font-size: 18px;
    }

    .card-title {
        font-size: 16px;
    }

    /* 调整按钮大小 */
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* 移动端菜单按钮已由底部导航栏代替 */

    /* 调整表单输入框 */
    .form-input,
    .form-select {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* ========================================
   横屏模式适配 (移动端横屏)
   ======================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .sidebar {
        overflow-y: auto;
    }

    .sidebar-logo {
        padding: 12px 16px;
        font-size: 14px;
    }

    .nav-item {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* ========================================
   深色模式支持 (可选)
   ======================================== */
@media (prefers-color-scheme: dark) {
    .mobile-menu-button {
        background: #1E293B;
        color: #F8FAFC;
    }

    .mobile-menu-button:hover {
        background: #334155;
    }
}

/* ========================================
   打印样式优化
   ======================================== */
@media print {
    .sidebar,
    .mobile-menu-button,
    #sidebar-overlay {
        display: none !important;
    }

    .main {
        margin-left: 0;
        width: 100%;
    }
}