.wallet-container {
    margin: auto;
    margin-bottom: 80px;
    margin-top: 80px; /* Space for fixed header */
    width: 100%;
    max-width: 500px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}


.wallet-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    box-sizing: border-box;
    a{
        text-decoration: none;
        color: white;
    }
}

.wallet-actions button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 48%;
}

.wallet-actions button:hover {
    background-color: #0056b3;
}

.balance-section {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #333;
    margin-bottom: 5px;
}

.balance-amount {
    font-size: 24px;
    color: #555;
}

.transaction-list {
    margin-top: 20px;
}

.transaction {
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.transaction small {
    color: #888;
    margin-top: 5px;
}

.transaction.out {
    color: red;
}

.transaction.in {
    color: green;
}

.transaction .amount {
    font-weight: bold;
    margin-top: 5px;
}