body {
    font-family: Arial, sans-serif;
    background: #f8f8f8;
    margin: 0;
    padding: 0;
}


.wallet-container {
    width: 90%;
    margin: auto;
    background: white;
    border-radius: 10px;
    padding: 5px;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: auto;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}
.account-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
    background: #f1efef; /* Gray background */
    border-radius: 20px;
    padding: 10px 10px;
    box-shadow: 0 4px 6px rgba(3, 3, 3, 0.5);
    
}

.wallet-logo {
    width: 24px;  /* Adjust size as needed */
    height: 24px;
}



.balance {
    font-size: 32px; /* Adjust font size */
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
    font-stretch: condensed;
    font-weight: bold;
    display: flex;
    justify-content: space-around;
}

.actions {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    padding: 20px 0;
}
.back-button {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.2rem;
    color: inherit;
    text-decoration: none;
    
  }
.actions button, .action-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: #f3f2f2; /* Gray background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.icon-circle i {
    font-size: 18px;
    color: #555;
}

.tab-menu {
    display: flex;
    justify-content: space-around;
    font-weight: bold;
}

.tab-menu .active {
    border-bottom: 2px solid blue;
}
.crypto-list {
    margin-top: 10px;
}
.crypto-icon {
    position: relative;
    
}

.page_main_coin {
    display: block;
    margin: 0 auto; /* Centers it horizontally */
    padding: 10px;
    background: white;
    width: 50px; /* Ensures it has a fixed width */
}


.usdt-base-icon {
    width: 100%;
    height: auto;
}
.back-button {
    align-items: left;
}
.network-icon {
    position: absolute;
    bottom: -5px;  /* Adjust position */
    right: -5px;   /* Adjust position */
    width: 40%;    /* Set a fixed percentage */
    max-width: 15px; /* Ensures it doesn't get too big */
    height: auto;   /* Keeps aspect ratio */
    border-radius: 50%;  
}
.crypto-item {
    display: flex; /* Make it a flex container */
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    width: 100%; /* Use full width */
    gap: 10px; /* Space between items */
    align-items: flex-start;
}
.crypto-link {
    text-decoration: none;
    color: inherit;
    display: block !important;
    margin-top: 40px;
    margin-bottom: 40px;
}

.crypto-item img {
    width: 30px; /* Adjust size as needed */
    height: 30px;
    object-fit: contain; /* Ensures the image is properly scaled */
    border-radius: 50%; /* Makes it round */
}

.crypto-details {
    display: flex;
    flex-direction: column;
}

.crypto-name  {
    font-size: 16px;
    font-weight: 600;
}
.crypto-name small {
    background-color: #e4e0e0; /* Light gray background */
    padding: 2px 6px;
    border-radius: 6px; /* Rounded corners */
    font-size: 12px;
    margin-left: 4px; 
    margin-bottom: 4px;
    display: inline-block;
    font-weight: 550;
}


.crypto-balance {
    display: flex;
    flex-direction: column;     
    margin-left: auto;
    text-align: right;
    
}

.usdt-coin-amount, .trx-coin-amount,
.bnb-coin-amount, .eth-coin-amount, 
.btc-coin-amount, .doge-coin-amount,
.uni-coin-amount, .shib-coin-amount{
    font-size: 18px;
    font-weight: bold;
}

.usdt-usd-amount, .trx-usd-amount, 
.bnb-usd-amount, .eth-usd-amount, 
.btc-usd-amount, .doge-usd-amount,
.uni-usd-amount, .shib-usd-amount{
    font-size: 14px;
    color: gray;
}

.red {
    color: red;
    font-size: 12px;
    font-weight: bold;
}
.green {
    color: green;
    font-size: 12px;
    font-weight: bold;
}
.price {
    font-size: 14px;
}




.icon-color {
    fill: #007bff; /* Change this to your desired color */
}

.icon-color-opacity {
    fill: rgba(0, 123, 255, 0.5); /* Adjust opacity */
}
.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 90%; /* Keeps the width at 80% */
    left: 50%; /* Moves the left edge to the center of the screen */
    transform: translateX(-50%); /* Shifts it back by 50% of its own width */
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.account-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 18px;
}
.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.bottom-nav i {
    font-size: 14px;
    margin-bottom: 4px;
}

.bottom-nav .active {
    color: #007bff;
}
