body {
    background-color: #161a1e; /* Dark background */
    color: #eaecef;
    font-family: 'IBM Plex Sans', sans-serif;
}

/* Card Styling */
.card {
    background-color: #1e2329;
    border: none;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.card-header {
    background-color: #1e2329;
    border-bottom: 1px solid #2b3139;
    color: #eaecef;
    font-weight: 600;
}

/* Inputs */
.form-control, .form-select {
    background-color: #2b3139;
    border: 1px solid #474d57;
    color: #eaecef;
}

.form-control:focus, .form-select:focus {
    background-color: #2b3139;
    border-color: #f0b90b;
    color: #eaecef;
    box-shadow: none;
}

/* Buttons */
.btn-buy {
    background-color: #0ecb81;
    border: none;
    color: white;
    font-weight: 600;
}

.btn-buy:hover {
    background-color: #0aa86b;
    color: white;
}

.btn-sell {
    background-color: #f6465d;
    border: none;
    color: white;
    font-weight: 600;
}

.btn-sell:hover {
    background-color: #d93d50;
    color: white;
}

/* Text Colors */
.text-success { color: #0ecb81 !important; }
.text-danger { color: #f6465d !important; }
.text-muted { color: #848e9c !important; }

/* Table */
.table {
    color: #eaecef;
}
.table thead th {
    border-bottom: 1px solid #2b3139;
    color: #848e9c;
    font-weight: 400;
    font-size: 12px;
}
.table td {
    border-bottom: 1px solid #2b3139;
    vertical-align: middle;
}

/* Navbar override for this page if needed */
.navbar-dark .navbar-nav .nav-link {
    color: #eaecef;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #1e2329;
}
::-webkit-scrollbar-thumb {
    background: #474d57;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #5e6673;
}
