.tr-horse-container {
    margin: 20px 0;
    padding: 15px;
    border-radius: 5px;
}

.tr-horse-data {
    width: 100%;
}

.tr-horse-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.tr-horse-table th {
    text-align: left;
    padding: 12px 15px;
    font-weight: 600;
}

.tr-horse-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.tr-horse-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.tr-horse-section-title {
    margin: 25px 0 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.tr-loading, .tr-error {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.tr-error {
    background-color: #ffebee;
    color: #c62828;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .tr-horse-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .tr-horse-table th,
    .tr-horse-table td {
        padding: 8px 10px;
    }
}