/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: PingFangSC-Regular, sans-serif;
    background-color: #fff;
    color: #020814;
    overflow-x: hidden;
}

/* 头部导航栏 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-left {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    height: 100%;
    padding-right: 20px;
}

/* 导航栏展开按钮 */
.nav-toggle {
    width: 50px;
    height: 50px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    outline: none;
}

.nav-toggle:hover {
    background-color: #1664ff;
}

.nav-toggle:hover .hamburger span {
    background-color: #fff;
}

/* 汉堡菜单图标 */
.hamburger {
    width: 18px;
    height: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: #41464f;
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 1px;
}

/* 汉堡菜单变X效果 */
.nav-toggle.active .hamburger span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
    background-color: #fff;
}

.nav-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
    background-color: #fff;
}

.nav-toggle.active {
    background-color: #1664ff;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

.logo img {
    width: auto;
    height: 38px;
    margin-right: 8px;
    object-fit: contain;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #020814;
}

/* 总览按钮 */
.overview-btn {
    display: flex;
    align-items: center;
    padding: 4px 14px;
    background-color: #ebf1ff;
    border-radius: 4px;
    color: #1664ff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 16px;
}

.overview-btn:hover {
    opacity: 0.8;
}

/* 分割线 */
.divider {
    width: 1px;
    height: 20px;
    background-color: #e2e8f0;
    margin: 0 16px 0 16px;
    flex-shrink: 0;
}

/* 侧边导航栏 */
.sidebar {
    position: fixed;
    top: 50px;
    left: -300px;
    width: 300px;
    height: calc(100vh - 50px);
    background-color: #fff;
    border-right: 1px solid #e5e7eb;
    transition: left 0.3s ease;
    z-index: 999;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
}

.sidebar.show {
    left: 0;
}

.sidebar-content {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
}

/* 产品控制台 */
.product-console {
    margin-bottom: 32px;
}

.console-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    padding-left: 4px;
}

.console-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.console-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #f8f9fa;
    border: 1px solid transparent;
}

.console-item:hover {
    background-color: #e3f2fd;
    border-color: #1664ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(22, 100, 255, 0.1);
}

.console-icon {
    width: 24px;
    height: 24px;
    color: #6b7280;
    margin-bottom: 6px;
    transition: color 0.2s ease;
}

.console-item:hover .console-icon {
    color: #1664ff;
}

.console-name {
    font-size: 12px;
    color: #42464e;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
}

.console-item:hover .console-name {
    color: #1664ff;
}

/* 最近访问 */
.recent-access {
    margin-bottom: 24px;
}

.recent-access-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    padding-left: 4px;
}

.recent-access-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.recent-access-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #42464e;
    font-size: 13px;
    gap: 8px;
}

.recent-access-item:hover {
    background-color: #f3f4f6;
    color: #1664ff;
}

.recent-access-item:hover .recent-item-icon {
    color: #1664ff;
}

.recent-item-icon {
    width: 16px;
    height: 16px;
    color: #6b7280;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.recent-item-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recent-item-time {
    font-size: 11px;
    color: #9ca3af;
    flex-shrink: 0;
}

.no-recent {
    text-align: center;
    color: #9ca3af;
    font-size: 12px;
    padding: 20px 12px;
}

/* 主要内容区域 */
.main-content {
    margin-top: 50px;
    min-height: calc(100vh - 50px);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-container h1 {
    margin-bottom: 20px;
    color: #020814;
}

.content-container p {
    color: #64748b;
    line-height: 1.6;
}

/* 搜索框 */
.search-box {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #dde2e9;
    border-radius: 4px;
    padding: 6px 12px;
    margin: 9px 16px;
    transition: border-color 0.3s ease;
    min-width: 200px;
    height: 32px;
    position: relative;
}

.search-box:hover {
    border-color: #4281ff;
}

.search-box:focus-within {
    border-color: #4281ff;
    box-shadow: 0 0 0 2px rgba(66, 129, 255, 0.1);
}

.search-icon {
    margin-right: 8px;
    flex-shrink: 0;
}

.search-input {
    border: none;
    outline: none;
    background: transparent;
    color: #41464f;
    font-size: 14px;
    width: 100%;
    font-family: PingFangSC-Regular, sans-serif;
}

.search-input::placeholder {
    color: #9ca3af;
}

/* 搜索下拉 */
.search-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1002;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.search-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 搜索加载动画 */
.search-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #6b7280;
    font-size: 14px;
    gap: 8px;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #4281ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 搜索结果 */
.search-results {
    padding: 8px 0;
    display: none;
}

.search-category {
    margin-bottom: 16px;
}

.search-category:last-child {
    margin-bottom: 0;
}

.category-name {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    background-color: #f9fafb;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 4px;
}

.category-helps {
    padding: 0;
}

.help-item {
    padding: 10px 16px;
    color: #42464e;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    margin: 2px 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.help-item:hover {
    background-color: #f3f4f6;
    color: #1664ff;
}

.help-item-title {
    flex: 1;
}

.help-item-icon {
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.help-item:hover .help-item-icon {
    opacity: 1;
}

/* 无结果提示 */
.no-results {
    padding: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

/* 热门搜索 */
.hot-search {
    padding: 0;
}

.hot-search-title {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    background-color: #f9fafb;
    margin-bottom: 0;
}

.hot-keywords {
    padding: 0;
}

.hot-keyword {
    padding: 8px 16px;
    color: #42464e;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 2px 8px;
    display: block;
}

.hot-keyword:hover {
    background-color: #f8f9fa;
    color: #1664ff;
}

/* 头像容器 */
.avatar-container {
    position: relative;
    display: inline-block;
    margin-right: 16px;
}

/* 头像 */
.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ecf2ff;
    color: #05f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
}

/* 头像下拉菜单 */
.avatar-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: max-content;
    min-width: 280px;
    border-radius: 4px;
    box-shadow: 0 0 32px rgba(205, 213, 222, .42);
    opacity: 0;
    background-color: #fff;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
    margin-top: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.avatar-container:hover .avatar-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 头像下拉菜单上部分 */
.avatar-dropdown-top {
    background: linear-gradient(287deg, rgba(232, 241, 255, .3) 11.07%, rgba(245, 248, 255, .3) 89%), linear-gradient(291deg, rgba(201, 222, 255, .3) 24.92%, rgba(245, 248, 255, .3) 88.01%);
    padding: 20px 24px;
}

.user-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 48px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    margin-top: 5px;
    max-height: calc(100% - 12px);
    border-radius: 50%;
    background-color: #ecf2ff;
    color: #05f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.user-details {
    flex: 1;
    min-width: 0;
    padding-top: 2px;
}

.user-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
    gap: 50px;
}

.user-id-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.user-name-section {
    display: flex;
    align-items: center;
    gap: 6px;
}

.user-id-section {
    display: flex;
    align-items: center;
    gap: 6px;
}

.user-name {
    font-size: 18px;
    font-weight: 400;
    color: #0c0d0e;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-id {
    font-size: 13px;
    color: #42464e;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-icon {
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 3px;
    border-radius: 3px;
    width: 18px;
    height: 18px;
}

.copy-icon:hover {
    opacity: 1;
    background-color: rgba(100, 116, 139, 0.1);
}

/* 账号管理 */
.account-manage {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 13px;
    color: #42464e;
    flex-shrink: 0;
}

.account-manage:hover {
    color: #1664ff;
}

.account-manage:hover svg path {
    stroke: #1664ff;
}

.account-manage svg {
    transition: all 0.3s ease;
}

/* 实名认证状态 */
.verification-status {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: #f6f8fa;
    border-radius: 4px;
    box-shadow: 0 0 0 1px #dde2e9;
    padding: 2px 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
    width: fit-content;
}

.verification-text {
    font-size: 10px;
    color: #42464e;
    transition: color 0.3s ease;
    min-width: 32px;
    text-align: left;
    line-height: 1;
    display: flex;
    align-items: center;
}

.verification-status:hover .verification-text {
    color: #1664ff;
}

.verification-icon {
    flex-shrink: 0;
}

.verification-arrow {
    flex-shrink: 0;
}

.verification-arrow path {
    transition: none;
}

/* 认证状态图标样式 */
.verify-success {
    fill: #10B981;
}

.verify-failed {
    fill: #EF4444;
}

.verify-pending {
    fill: #F59E0B;
}

.verify-check {
    display: block;
}

.verify-cross {
    display: none;
}

.verify-pending-line {
    display: none;
}

/* 不同状态的图标显示 */
.verification-status[data-status="verified"] .verify-check {
    display: block;
}

.verification-status[data-status="verified"] .verify-cross,
.verification-status[data-status="verified"] .verify-pending-line {
    display: none;
}

.verification-status[data-status="failed"] .verify-cross {
    display: block;
}

.verification-status[data-status="failed"] .verify-check,
.verification-status[data-status="failed"] .verify-pending-line {
    display: none;
}

.verification-status[data-status="pending"] .verify-pending-line {
    display: block;
}

.verification-status[data-status="pending"] .verify-check,
.verification-status[data-status="pending"] .verify-cross {
    display: none;
}

/* 头像下拉菜单下部分 */
.avatar-dropdown-bottom {
    background-color: #fff;
    padding: 16px 24px;
}

/* 下拉菜单区域 */
.dropdown-section {
    margin-bottom: 12px;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.section-title {
    color: #0c0d0e;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: left;
}

.section-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: flex-start;
}

.section-item {
    color: #42464e;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 4px 8px 4px 0;
    border-radius: 4px;
    white-space: nowrap;
}

.section-item:hover {
    color: #1664ff;
}

.dropdown-divider {
    height: 0.3px;
    background-color: #e2e8f0;
    margin: 12px 0;
    opacity: 0.6;
}

/* 退出登录区域 */
.logout-section {
    margin-top: 8px;
}

.logout-btn {
    width: 100%;
    background-color: #f6f8fa;
    color: #41464f;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #dde2e9;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .08);
    transition: all 0.3s ease;
    font-family: inherit;
}

.logout-btn:hover {
    box-shadow: 0 2px 3px rgba(0, 0, 0, .15);
    border: 1px solid rgb(66, 129, 255);
    color: #41464f;
}

/* 文档链接 */
.document-link {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    color: #020814;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 16px;
    border-radius: 4px;
    height: 32px;
}

.document-link:hover {
    color: #3370ff;
    font-weight: 700;
}

/* 费用菜单和访问菜单 */
.cost-menu {
    position: relative;
    display: inline-block;
}

.cost-menu-trigger {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    color: #020814;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    gap: 6px;
    height: 32px;
}

.cost-menu-trigger:hover {
    color: #3370ff;
    font-weight: 700;
}

.cost-menu-trigger:hover .arrow-icon {
    transform: rotate(180deg);
}

/* 通知按钮 */
.notification-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 16px;
}

.notification-btn:hover {
    background-color: #f8f9fa;
}

.notification-btn:hover .notification-icon {
    stroke: #1664ff;
}

.notification-icon {
    transition: all 0.3s ease;
}

/* 未读消息小红点 */
.notification-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background-color: #ff4444;
    border-radius: 50%;
    border: 2px solid #fff;
    display: none;
}

.notification-dot.show {
    display: block;
}

/* 禁用文本选择 */
.section-title,
.cost-menu-trigger,
.menu-item,
.document-link,
.avatar,
.account-manage,
.avatar-dropdown-bottom,
.search-box,
.overview-btn,
.sidebar-content,
.console-title,
.console-name,
.recent-access-title,
.recent-access-item,
.hot-search-title,
.hot-keyword,
.nav-toggle,
.logo,
.notification-btn {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.cost-menu-dropdown,
.access-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 4px;
}

.cost-menu:hover .cost-menu-dropdown,
.cost-menu:hover .access-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.menu-item {
    padding: 6px 16px;
    color: #42464e;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 4px;
    text-align: center;
}

.menu-item:hover {
    background-color: #f8f9fa;
}

.menu-item.active {
    color: #3370ff;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .sidebar {
        width: 280px;
        left: -280px;
    }

    .logo-text {
        display: none;
    }

    .overview-btn {
        margin-left: 8px;
        padding: 6px 12px;
        font-size: 13px;
    }

    .divider {
        height: 18px;
        margin: 0 12px;
    }

    .avatar-container {
        margin-right: 12px;
    }

    .avatar {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .avatar-dropdown {
        min-width: 250px;
        right: -20px;
    }

    .avatar-dropdown-top {
        padding: 16px 20px;
    }

    .avatar-dropdown-bottom {
        padding: 12px 20px;
    }

    .user-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .user-name {
        font-size: 15px;
    }

    .user-id {
        font-size: 12px;
    }

    .copy-icon {
        width: 16px;
        height: 16px;
    }

    .section-item {
        font-size: 12px;
        padding: 3px 6px 3px 0;
    }

    .section-title {
        font-size: 13px;
    }

    .logout-btn {
        font-size: 14px;
        padding: 8px 12px;
    }

    .search-box {
        min-width: 150px;
        margin: 8px 12px;
        padding: 4px 10px;
    }

    .search-input {
        font-size: 13px;
    }

    .document-link,
    .cost-menu-trigger {
        padding: 6px 8px;
        font-size: 13px;
        margin-right: 12px;
    }
}
    position: relative;
    display: inline-block;
}

.cost-menu-trigger {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    color: #020814;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    gap: 6px;
    height: 32px;
}

.cost-menu-trigger:hover {
    color: #3370ff;
    font-weight: 700;
}

.cost-menu-trigger:hover .arrow-icon {
    transform: rotate(180deg);
}

/* 通知按钮 */
.notification-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 16px;
}

.notification-btn:hover {
    background-color: #f8f9fa;
}

.notification-btn:hover .notification-icon {
    stroke: #1664ff;
}

.notification-icon {
    transition: all 0.3s ease;
}

/* 未读消息小红点 */
.notification-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background-color: #ff4444;
    border-radius: 50%;
    border: 2px solid #fff;
    display: none;
}

.notification-dot.show {
    display: block;
}

/* 禁用文本选择 */
.section-title,
.cost-menu-trigger,
.menu-item,
.document-link,
.avatar,
.account-manage,
.avatar-dropdown-bottom,
.search-box,
.overview-btn,
.sidebar-content,
.console-title,
.console-name,
.recent-access-title,
.recent-access-item,
.hot-search-title,
.hot-keyword,
.nav-toggle,
.logo,
.notification-btn {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.cost-menu-dropdown,
.access-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 4px;
}

.cost-menu:hover .cost-menu-dropdown,
.cost-menu:hover .access-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.menu-item {
    padding: 6px 16px;
    color: #42464e;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 4px;
    text-align: center;
}

.menu-item:hover {
    background-color: #f8f9fa;
}

.menu-item.active {
    color: #3370ff;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .sidebar {
        width: 280px;
        left: -280px;
    }

    .logo-text {
        display: none;
    }

    .overview-btn {
        margin-left: 8px;
        padding: 6px 12px;
        font-size: 13px;
    }

    .divider {
        height: 18px;
        margin: 0 12px;
    }

    .avatar-container {
        margin-right: 12px;
    }

    .avatar {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .avatar-dropdown {
        min-width: 250px;
        right: -20px;
    }

    .avatar-dropdown-top {
        padding: 16px 20px;
    }

    .avatar-dropdown-bottom {
        padding: 12px 20px;
    }

    .user-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .user-name {
        font-size: 15px;
    }

    .user-id {
        font-size: 12px;
    }

    .copy-icon {
        width: 16px;
        height: 16px;
    }

    .section-item {
        font-size: 12px;
        padding: 3px 6px 3px 0;
    }

    .section-title {
        font-size: 13px;
    }

    .logout-btn {
        font-size: 14px;
        padding: 8px 12px;
    }

    .search-box {
        min-width: 150px;
        margin: 8px 12px;
        padding: 4px 10px;
    }

    .search-input {
        font-size: 13px;
    }

    .document-link,
    .cost-menu-trigger {
        padding: 6px 8px;
        font-size: 13px;
        margin-right: 12px;
    }
}