body {
    font-family: 'Inter', sans-serif;
    background-color: #1A1B20; /* Binance Black */
    /* Add the Dark Candlestick Chart background image (SVG Data URI) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50'%3E%3Crect x='0' y='0' width='100' height='50' fill='%231A1B20'/%3E%3Cline x1='0' y1='25' x2='100' y2='25' stroke='%23374151' stroke-width='0.2'/%3E%3Crect x='5' y='20' width='5' height='10' fill='%230ECB81'/%3E%3Cline x1='7.5' y1='15' x2='7.5' y2='35' stroke='%230ECB81' stroke-width='0.5'/%3E%3Crect x='15' y='25' width='5' height='8' fill='%23F6465D'/%3E%3Cline x1='17.5' y1='22' x2='17.5' y2='37' stroke='%23F6465D' stroke-width='0.5'/%3E%3Crect x='25' y='18' width='5' height='12' fill='%230ECB81'/%3E%3Cline x1='27.5' y1='15' x2='27.5' y2='33' stroke='%230ECB81' stroke-width='0.5'/%3E%3Crect x='35' y='30' width='5' height='6' fill='%23F6465D'/%3E%3Cline x1='37.5' y1='27' x2='37.5' y2='38' stroke='%23F6465D' stroke-width='0.5'/%3E%3Crect x='45' y='15' width='5' height='15' fill='%230ECB81'/%3E%3Cline x1='47.5' y1='10' x2='47.5' y2='32' stroke='%230ECB81' stroke-width='0.5'/%3E%3Crect x='55' y='22' width='5' height='10' fill='%23F6465D'/%3E%3Cline x1='57.5' y1='18' x2='57.5' y2='35' stroke='%23F6465D' stroke-width='0.5'/%3E%3Crect x='65' y='10' width='5' height='15' fill='%230ECB81'/%3E%3Cline x1='67.5' y1='8' x2='67.5' y2='27' stroke='%230ECB81' stroke-width='0.5'/%3E%3Crect x='75' y='20' width='5' height='12' fill='%23F6465D'/%3E%3Cline x1='77.5' y1='15' x2='77.5' y2='35' stroke='%23F6465D' stroke-width='0.5'/%3E%3Crect x='85' y='15' width='5' height='15' fill='%230ECB81'/%3E%3Cline x1='87.5' y1='12' x2='87.5' y2='33' stroke='%230ECB81' stroke-width='0.5'/%3E%3C/svg%3E");
    background-repeat: repeat; 
    background-size: 300px; 
    background-attachment: fixed;
}
/* Custom spinner for refresh icon */
.animate-spin-custom {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}