* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
}

body {
    background-color: #1c1c1c;
    color: #33ff33;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #0d0d0d;
    border-bottom: 1px solid #33ff33;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.profile-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.token-name {
    font-size: 24px;
    font-weight: bold;
}

.back-button {
    background-color: #33ff33;
    color: #0d0d0d;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.wallet-container {
    width: 80%;
    max-width: 800px;
    text-align: center;
}

.wallet-form {
    margin-bottom: 20px;
}

input {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #33ff33;
    background-color: #0d0d0d;
    color: #33ff33;
}

button {
    padding: 10px 20px;
    background-color: #33ff33;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 10px;
}

.balance-container {
    display: flex;
    justify-content: space-between;
}

.balance-left, .balance-right {
    width: 48%;
    padding: 20px;
    border: 1px solid #33ff33;
}

.rates-box {
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    justify-content: space-between;
}

button:hover {
    background-color: #1a1a1a;
    color: #33ff33;
}
