/* SafePal Wallet 样式 */
.safepal-wallet-container {
    width: 100%;
    background-color: #FFFFFF;
    min-height: auto;
    height: fit-content;
    position: relative;
    padding-bottom: 100px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.safepal-wallet-container.dark-mode {
    background-color: #0A0A0A;
    color: #FFFFFF;
}

.safepal-wallet-container.dark-mode .safepal-app-bar {
    background-color: #1A1A1A;
    border-bottom-color: #333333;
}

.safepal-wallet-container.dark-mode .safepal-tabs {
    background-color: #1A1A1A;
    border-bottom-color: #333333;
}

/* 状态栏在 SafePal 中需要适配 */
.safepal-wallet-container .status-bar {
    background-color: transparent;
}

.safepal-wallet-container.dark-mode .status-bar {
    background-color: transparent;
}

/* App Bar 样式 */
.safepal-app-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #F5F5F5;
    border-bottom: 1px solid #E0E0E0;
}

/* Tabs 样式 */
.safepal-tabs {
    display: flex;
    padding: 0 16px;
    background-color: #F5F5F5;
    border-bottom: 1px solid #E0E0E0;
}

/* 响应式 */
@media (max-width: 414px) {
    .safepal-wallet-container {
        max-width: 100%;
    }
}
