* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}
body { 
    background: #0f172a; 
    color: #e2e8f0; 
    font-family: -apple-system, sans-serif; 
    padding: 16px; 
}
.marketcap-header {
    display: flex;
    align-items: center;
    background: #040b1b;
    font-size: 50px;
    font-weight: bold;
    gap: 20px; /* Add some space between the image and the text */
    padding: 20px 40px;
    border-bottom: 1px solid #2a3458;
}
.marketcap-header img {
    width: 80px;
}
.fishing_data {
    font-size: 16px;
    color: #ddd;
    border-left: 1px solid #2a3458;
    padding-left: 10px;
}
.symbol { 
    display: flex;
    align-items: center;
    font-size: 40px; 
    margin-left: auto; 
    text-align: center; 
}
.symbol img { 
    width: 50px; 
    height: 50px; 
    vertical-align: middle; 
    margin-right: 10px; 
}
.row { 
    display: flex; 
    justify-content: center; 
    gap: 16px; 
    flex-wrap: wrap;
    margin: 40px;
}
.cell { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}
.cell img {
    width: 100px;
    margin-bottom: 10px;
}
.chart-area {
    width: 150px;
    display: flex;
    justify-content: center;
    background: #040b1b;
    border: 1px solid #1e273a;
    border-radius: 5px;
    padding: 20px;
}
.chart_block_Top {
    display: flex;
    justify-content: center;
    width: 120px;
    border-bottom: 1px solid #334155;
    margin-bottom: 100px;
}
.chart_block_Bottom {
    display: flex;
    justify-content: center;
    width: 120px;
    border-top: 1px solid #334155;
    margin-top: 100px;
}
.bar { 
    width: 100px; 
    height: 100px; 
}
.bar-plus { 
    background: #10b981; 
    border-radius: 5px 5px 0 0; 
}
.bar-minus { 
    background: #f43f5e; 
    border-radius: 0 0 5px 5px; 
}
.label { 
    margin-top: 10px; 
    font-size: 13px; 
    color: #94a3b8; 
}
.rate { 
    text-align: center; 
    font-size: 16px; 
    font-weight: bold; 
    margin-top: 4px; 
}
.rate-plus { 
    color: #10b981; 
}
.rate-minus { 
    color: #f43f5e; 
}
.total { 
    border-left: 1px solid #2a3458; 
    font-size: 22px; 
    font-weight: bold; 
    margin-left: 20px;
    padding-left: 20px;
}