body {
    background-color: #181A20;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    background: #181A20;
    border-radius: 10px;
}

h2 {
    color: #ffcc00;
}

/* Crypto List */
.crypto-list {
    display: flex;
    flex-direction: column;
}

/* Header Row */
.crypto-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: normal;
    padding: 12px 10px;
}

/* Header Item */
.header-item {
    flex: 1;
    text-align: center;
    color: #fff;
}

/* Crypto Data Row */
.crypto-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
}

/* Pair & Price */
.crypto-pair,
.crypto-price {
    flex: 1;
    text-align: center;
}

/* Buy & Sell Boxes */
.crypto-change {
    flex: 1;
    min-width: 60px; /* Ensures consistent spacing */
    height: 45px;
    line-height: 45px;
    border-radius: 5px;
    color: white;
    font-weight: normal;
    font-size: 13px;
    text-align: center;
    margin: 0 5px; /* Adds spacing between Buy and Sell */
}

/* Binance Green for Buy */
.green {
    background-color: #0ecb81;
}

/* Binance Red for Sell */
.red {
    background-color: #f6465d;
}

#crypto-list {
    display: block !important;
    visibility: visible !important;
}

