
.live-lots-container {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
}

.section-title .highlight {
    color: #DD2121;
}

.lots-table-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.table-header {
    background: linear-gradient(135deg, #DD2121 0%, #c41e3a 100%);
    color: white;
    padding: 20px;
    border-bottom: none;
}

.table-header h4 {
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.lots-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.lots-table th {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
    padding: 15px 12px;
    text-align: center;
    border-bottom: 2px solid #e9ecef;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.lots-table td {
    padding: 15px 12px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.85rem;
    vertical-align: middle;
}

.lots-table tr:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.car-image {
    width: 50px;
    height: 35px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.auction-lot {
    color: #DD2121;
    font-weight: 600;
    text-decoration: none;
}

.auction-lot:hover {
    color: #c41e3a;
    text-decoration: underline;
}

.maker-badge {
    background: #e3f2fd;
    color: #1565c0;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.8rem;
}

.condition-badge {
    padding: 4px 8px;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.75rem;
}

.condition-excellent { background: #d4edda; color: #155724; }
.condition-good { background: #fff3cd; color: #856404; }
.condition-fair { background: #f8d7da; color: #721c24; }

.price-finish {
    color: #28a745;
    font-weight: 700;
    font-size: 0.9rem;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.pagination-info {
    color: #6c757d;
    font-size: 0.9rem;
}

.pagination {
    margin: 0;
}

.pagination .page-link {
    color: #DD2121;
    border: 1px solid #dee2e6;
    padding: 8px 12px;
}

.pagination .page-link:hover {
    background-color: #DD2121;
    color: white;
    border-color: #DD2121;
}

.pagination .page-item.active .page-link {
    background-color: #DD2121;
    border-color: #DD2121;
}

.table-responsive {
    max-height: 600px;
    overflow-y: auto;
}

.filters-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-input {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.9rem;
}

.filter-input:focus {
    border-color: #DD2121;
    box-shadow: 0 0 0 0.2rem rgba(221, 33, 33, 0.15);
}

@media (max-width: 768px) {
    .lots-table th,
    .lots-table td {
        padding: 8px 4px;
        font-size: 0.75rem;
    }

    .car-image {
        width: 40px;
        height: 28px;
    }

    .section-title {
        font-size: 2rem;
    }
}