body {
    font-family: 'Inter', sans-serif;
}
table.dataTable tbody tr:nth-child(odd) {
    background-color: #f9fafb;
}
table.dataTable tbody tr:hover {
    background-color: #eef2ff;
}
.tab-btn {
    transition: all 0.3s;
}
.tab-btn.active {
    border-color: #2563eb;
    color: #2563eb;
    font-weight: 600;
}
.metric-card {
    transition: all 0.3s ease;
}
.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.apexcharts-tooltip {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none !important;
    border-radius: 0.5rem;
}
.chart-container {
    position: relative;
}
.chart-legend {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
}
.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.trade-annotation {
    cursor: pointer;
}