.fixture_football_main {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
    background: #ffffff;
}

/* League Menu Tabs */
.league-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    background: transparent;
    padding: 0;
}

.league-menu-item {
    color: #555555;
    background: #ececec;
    padding: 10px 16px;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.league-menu-item:hover {
    background: #e0e0e0;
    color: #111;
}

.league-menu-item.active {
    color: #ffffff;
    background: #6b3ba7; /* Vibrant Purple Active Tab */
}

/* Fixture List Container */
.fixture-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fixture-list-item {
    background: #ffffff;
    border: none;
    border-radius: 0;
    overflow: hidden;
}

/* Header Banner per date */
.fixture-head {
    background: #6b3ba7; /* Vibrant Purple Banner */
    padding: 10px 18px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
}

.fixture-head_name, 
.fixture-head_space, 
.fixture-head_date {
    color: #ffffff;
    text-transform: uppercase;
}

/* Match Rows */
.fixture-row {
    display: flex;
    flex-direction: column;
}

.fixture-row-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #ffffff;
}

/* Alternating zebra stripe rows */
.fixture-row-item:nth-child(even) {
    background: #f3ebf9; /* Light lavender accent */
}

.fixture-row-item .time {
    font-weight: 500;
    color: #333333;
    font-size: 14px;
    width: 60px;
}

.fixture-row-item .match {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex: 1;
}

/* Team columns */
.fixture-row-item .home,
.fixture-row-item .away {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 42%;
}

.fixture-row-item .home {
    justify-content: flex-end;
}

.fixture-row-item .away {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.fixture-row-item .name {
    font-weight: 600;
    color: #222222;
    font-size: 14px;
}

.fixture-row-item img.logo {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* VS Badge in Center */
.score-time {
    background: transparent;
    padding: 0;
}

.fixture-row-item .vs-badge {
    background: #6b3ba7;
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 4px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ffs-loader {
    text-align: center;
    padding: 30px;
    color: #6b3ba7;
    font-weight: 600;
    font-size: 15px;
}

/* Skeleton Loader Styles */
.ffs-skeleton-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
    width: 100%;
}

.ffs-skeleton-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #eef0f3;
}

.ffs-skeleton-head {
    height: 42px;
    background: linear-gradient(90deg, #f0f2f5 25%, #e6e8ec 37%, #f0f2f5 63%);
    background-size: 400% 100%;
    animation: ffs-shimmer 1.4s ease infinite;
}

.ffs-skeleton-row {
    height: 48px;
    margin: 10px 15px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f7f8fa 25%, #edeef2 37%, #f7f8fa 63%);
    background-size: 400% 100%;
    animation: ffs-shimmer 1.4s ease infinite;
}

@keyframes ffs-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

/* Empty State Message */
.ffs-empty-state {
    text-align: center;
    padding: 45px 20px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px dashed #dcdfe6;
    color: #888888;
    font-size: 15px;
    font-weight: 600;
    margin: 15px 0;
}
