/* Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #0f0f0f;
    color: #fff;
    line-height: 1.6;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Reduced horizontal padding to allow more space for the balance */
    padding: 10px 10px;
    background: #1a1a1a;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.nav-left {
    display: flex;
    align-items: center;
}

.site-name {
    font-size: 1.5rem;
    color: #ff9e0f;
    font-weight: bold;
    margin-right: 20px;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-link {
    color: #ff9e0f;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff5f5f;
}

/* Adjusted Balance Display:
   - Removed any right margin
   - Added a small left margin to give it some breathing room */
.balance-display {
    font-size: 1rem;
    color: #fff;
    margin-left: 10px;
    /* You can experiment with negative right margin if needed:
       margin-right: -10px; */
}

/* Account Section */
#account {
    padding: 80px 20px;
    text-align: center;
}

#account h1 {
    font-size: 2.5rem;
    color: #ff9e0f;
    margin-bottom: 20px;
}

.current-balance {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #ff9e0f;
}

/* Crypto Deposit & Withdraw Section */
.crypto-deposit, .crypto-withdraw {
    background: rgba(20, 20, 20, 0.9);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

label, select {
    font-size: 1.2rem;
    color: white;
}

select {
    padding: 10px;
    border: 1px solid #ff9e0f;
    border-radius: 5px;
    background: #1a1a1a;
    color: white;
}

button {
    padding: 10px 20px;
    background: #ff9e0f;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #ff5f5f;
}

/* Transaction History */
.transaction-history {
    margin-top: 30px;
    padding: 15px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.transaction-history h3 {
    color: #ff9e0f;
}

#transaction-list {
    list-style: none;
    padding: 0;
}

#transaction-list li {
    padding: 5px 0;
    border-bottom: 1px solid #333;
}

/* Transaction Message */
.transaction-message {
    margin-top: 15px;
    font-size: 1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #0d0d0d;
    color: #ccc;
}
