/* ✅ 我的页面样式 */
body {
    background: #1e1e1e;
    color: white;
    font-family: sans-serif;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.section {
    background: #333;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.section p {
    margin: 5px 0;
}

.progress-bar {
    background: #444;
    border-radius: 10px;
    height: 10px;
    overflow: hidden;
    margin: 8px 0;
}

.progress-bar-inner {
    height: 100%;
    border-radius: 10px;
}

.progress-text {
    font-size: 12px;
    color: #aaa;
}

ul {
    padding-left: 20px;
    line-height: 1.8;
}

.upgrade-btn {
    width: 100%;
    padding: 12px;
    background: #ff9800;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

.logout-btn {
    width: 100%;
    padding: 10px;
    background: #555;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 5px;
}

.back-btn {
    background: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 20px;
}

.nav-btn {
    padding: 10px 20px;
    background: #2d2d2d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.nav-btn:hover {
    background: #005a9e;
}
/* ✅ 使用量区域：深海蓝（与黑色背景协调） */
.usage-section {
    background: linear-gradient(135deg, #2c3e50, #34495e) !important;
    color: #ecf0f1; /* 柔和的浅灰色文字 */
    border: none;
}

/* ✅ 进度条文字 */
.usage-section .progress-text {
    color: rgba(236, 240, 241, 0.8);
}

/* ✅ 进度条背景 */
.usage-section .progress-bar {
    background: rgba(255, 255, 255, 0.15);
}

/* ✅ 进度条填充色 */
.usage-section .progress-bar-inner {
    background: #3498db; /* 柔和的亮蓝色 */
}
/* ✅ 订单列表样式 */
#orderList {
    scrollbar-width: thin;
    scrollbar-color: #555 #333;
}

#orderList::-webkit-scrollbar {
    width: 6px;
}

#orderList::-webkit-scrollbar-track {
    background: #333;
    border-radius: 3px;
}

#orderList::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 3px;
}

#orderList::-webkit-scrollbar-thumb:hover {
    background: #777;
}