.cfs-fights-table-wrapper {
    margin: 20px 0;
    overflow-x: auto;
}

.cfs-fights-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.cfs-fights-table th {
    background: rgba(10, 10, 10, 0.7);
    color: #ffffff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.cfs-fights-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
}

.cfs-fights-table tr:last-child td {
    border-bottom: none;
}

.cfs-fights-table .win {
    color: #4CAF50;
    font-weight: bold;
}

.cfs-fights-table .loss {
    color: #f44336;
    font-weight: bold;
}

.cfs-fights-table .event-name {
    color: #e41e1e;
    display: block;
    font-weight: bold;
}

.cfs-fights-table .event-date {
    color: #888;
    font-size: 0.9em;
    display: block;
    margin-top: 5px;
}

.cfs-fights-table tr:hover {
    background: rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
    .cfs-fights-table th,
    .cfs-fights-table td {
        padding: 10px;
    }
    
    .cfs-fights-table {
        font-size: 14px;
    }
}
