* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #0f1724;
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    padding: 5px 15px;
    background-color: #0f1724;
    color: white;
    height: 30px;
    font-size: 14px;
}

.time {
    font-weight: bold;
}

.status-icons {
    display: flex;
    gap: 5px;
}

.app-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 5px;
}

.left-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.estimate-value {
    color: #8c8e95;
    font-size: 14px;
}

.currency {
    font-weight: 600;
    margin-left: 5px;
    font-size: 14px;
}

.right-header {
    display: flex;
    gap: 15px;
}

.balance-section {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 0 5px;
}

.currency-symbol {
    font-size: 30px;
    margin-right: 5px;
    font-weight: 400;
}

.balance-amount {
    font-size: 38px;
    font-weight: 600;
}

.profit-loss {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #8c8e95;
    font-size: 13px;
    padding: 0 5px;
}

.profit-loss-text {
    margin-right: 10px;
}

.loss-amount {
    color: #f6465d;
    margin-right: 5px;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 5px;
}

.deposit-btn {
    background-color: #f0b90b;
    color: black;
    border: none;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 600;
    flex: 1;
    cursor: pointer;
    font-size: 14px;
}

.withdraw-btn, .transfer-btn {
    background-color: #232836;
    color: white;
    border: none;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 600;
    flex: 1;
    cursor: pointer;
    font-size: 14px;
}

.convert-notice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #232836;
    padding: 15px;
    border-radius: 8px;
    margin: 0 5px 20px 5px;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.coin-icon {
    background-color: #f0b90b;
    color: black;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.assets-tabs {
    display: flex;
    border-bottom: 1px solid #2a3042;
    margin-bottom: 15px;
    position: relative;
    padding: 0 5px;
}

.tab {
    padding: 10px 0;
    margin-right: 20px;
    cursor: pointer;
    color: #8c8e95;
    position: relative;
    font-size: 14px;
}

.tab.active {
    color: white;
    font-weight: 600;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #f0b90b;
}

.search-icon {
    position: absolute;
    right: 0;
    top: 10px;
}

.filter-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 5px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #8c8e95;
    font-size: 12px;
}

.filter-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 1px solid #a0a0a0;
    border-radius: 3px;
    background-color: transparent;
}

.assets-list {
    margin-bottom: 70px;
    padding: 0 5px;
}

.asset-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #2a3042;
}

.asset-info {
    display: flex;
    gap: 10px;
}

.asset-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.bnb-icon {
    background-color: #f0b90b;
    color: black;
}

.try-icon {
    background-color: #e41e25;
    color: white;
}

.asset-details {
    display: flex;
    flex-direction: column;
}

.asset-name {
    font-weight: 600;
    font-size: 14px;
}

.asset-subname, .asset-cost, .asset-unit-price {
    color: #8c8e95;
    font-size: 11px;
    margin-top: 2px;
}

.asset-values {
    text-align: right;
}

.asset-balance {
    font-weight: 600;
    font-size: 14px;
}

.asset-value, .asset-cost-value, .asset-price-value {
    color: #8c8e95;
    font-size: 11px;
    margin-top: 2px;
    text-align: right;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #232836;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid #2a3042;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    color: #8c8e95;
}

.nav-item i {
    font-size: 16px;
    margin-bottom: 3px;
}

.home-indicator {
    position: fixed;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 3px;
    margin: 0 auto;
}
