.trend-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 900px;
    display: flex;
    flex-direction: column;
}

h2 {
    text-align: left;
    font-size: 24px;
    color: #aaa;
    margin-bottom: 20px;
}

.trades-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1c2331;
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.trades-table th, .trades-table td {
    padding: 12px 15px;
    text-align: left;
}

.trades-table thead th {
    background-color: #34495e;
    color: #aaa;
    font-weight: bold;
}

.trades-table tbody tr {
    border-bottom: 1px solid #444;
}

.trades-table tbody tr:hover {
    background-color: #2c3e50;
}

.trades-table tbody tr:last-of-type {
    border-bottom: none;
}

.trades-table a {
    color: #5daeff;
    text-decoration: none;
}

.trades-table a:hover {
    text-decoration: underline;
}

