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: 60px;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}

.back-button {
    position: absolute;
    left: 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 20px;
}

.account-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 18px;
}

.wallet-logo {
    width: 24px;
    height: 24px;
}
.actions {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    padding: 20px 0;
}
.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;
}

.crypto-list {
    margin-top: 10px;
}
.crypto-icon {
    position: relative;
    
}


.crypto-item {
    display: flex; /* Make it a flex container */
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    width: 100%; /* Use full width */
    gap: 10px; /* Space between items */
    align-items: center;
}


.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 {
    
    font-size: 14px;
    margin-left: 8px; 
    margin-bottom: 4px;
    display: inline-block;
    font-weight: 550;
    color: #333232;
}


.crypto-link {
    display: block;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.crypto-item {
    display: flex;
    align-items: center;
}

.crypto-icon img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.crypto-details {
    display: flex;
    flex-direction: column;
}

.crypto-name {
    font-weight: bold;
}



/* Drawer content */
.drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 10px; /* horizontal only */
    background: #f1f1f1;
    border-radius: 5px;
    position: relative;
}

.copy-btn {
    cursor: pointer;
    background: #061ad4;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    margin-top: 10px;
    font-weight: bold;
    
}

.crypto-link.active .drawer {
    max-height: 200px; /* Adjust ased on content size */
    padding: 10px;
}

.add_and_button{
    display: flex; 
    align-items: center; 
    margin-top: 10px;
    justify-content: center;
    flex-direction: column;
    font-size: 12px;
    margin-bottom: 10px;
}


.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;
}

.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;
}
