/* 账户页面整体容器 */
.custom-account {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 账户页面布局 */
.custom-account-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

/* 左侧菜单 */
.custom-account-navigation {
    min-width: 250px;
    background: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
}

.custom-account-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-account-navigation li {
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s ease-in-out;
}

.custom-account-navigation li:hover,
.custom-account-navigation li.is-active {
    background: #0073aa;
    color: white;
}

.custom-account-navigation a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* 右侧内容区域 */
.custom-account-content {
    flex-grow: 1;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    min-height: 400px;
}
/* 表格样式 */
#custom-api-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

#custom-api-table th, #custom-api-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

#custom-api-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}
/* 移动端适配 */
@media (max-width: 768px) {
    .custom-account-wrapper {
        flex-direction: column;
    }

    .custom-account-navigation {
        width: 100%;
    }

    .custom-account-content {
        width: 100%;
    }
}