/**
 * PREMATCH CONTINUOUS FEED STYLES
 * Compact, high-density chronological match feed
 */

/* Hide date filters container */
#bcSbFilters {
    display: none !important;
}

/* Country Filter Header */
.bc-sb-country-filter-header {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.bc-sb-country-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.9);
}

.bc-sb-country-back:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.bc-sb-country-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bc-sb-country-name {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.3px;
}

.bc-sb-country-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Date section */
.bc-sb-date-section {
    margin-bottom: 24px;
}

/* Date header */
.bc-sb-date-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 12px;
}

.bc-sb-date-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
}

.bc-sb-date-full {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* League group */
.bc-sb-league-group {
    margin-bottom: 16px;
}

/* League header */
.bc-sb-league-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    margin-bottom: 8px;
}

.bc-sb-league-icon {
    font-size: 14px;
    opacity: 0.7;
}

.bc-sb-league-name {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.bc-sb-league-count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 10px;
}

/* League matches container */
.bc-sb-league-matches {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Compact match card */
.bc-sb-event--compact {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.bc-sb-event--compact:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Time column */
.bc-sb-event__time {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Teams column */
.bc-sb-event__teams {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.bc-sb-event__team {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bc-sb-event__team:first-child {
    font-weight: 500;
}

.bc-sb-event__team:last-child {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

/* Odds column */
.bc-sb-event__odds {
    display: flex;
    gap: 6px;
}

.bc-sb-odd {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 52px;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.15s ease;
}

.bc-sb-odd__label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.bc-sb-odd__value {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.bc-sb-odd--locked {
    cursor: not-allowed;
    opacity: 0.5;
}

.bc-sb-odd:not(.bc-sb-odd--locked):hover {
    background: var(--bc-sb-primary, #FF6B00);
    border-color: var(--bc-sb-primary, #FF6B00);
    transform: scale(1.05);
}

/* Empty state */
.bc-sb-empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .bc-sb-event--compact {
        grid-template-columns: 42px 1fr;
        gap: 10px;
    }
    
    .bc-sb-event__odds {
        grid-column: 1 / -1;
        justify-content: space-around;
        margin-top: 8px;
    }
    
    .bc-sb-odd {
        min-width: 0;
        flex: 1;
    }
    
    .bc-sb-league-header {
        padding: 8px 12px;
    }
    
    .bc-sb-date-header {
        padding: 10px 12px;
    }
}

/* Desktop centered panel */
@media (min-width: 768px) {
    .bc-sb-events__list {
        max-width: 720px;
        margin: 0 auto;
    }
}

/* Country Active State (when country filter is active) */
.bc-sb-country--active {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--bc-sb-primary, #FF6B00);
}

.bc-sb-country--active .bc-sb-country__header {
    background: rgba(255, 255, 255, 0.08);
    color: var(--bc-sb-primary, #FF6B00);
}

.bc-sb-country--active .bc-sb-country__name {
    font-weight: 700;
    color: var(--bc-sb-primary, #FF6B00);
}
