/* new fixtures 2026 style */
/* CARD */
.fixture-card {
    display: flex;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    margin-bottom: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    overflow: hidden;
	width: 85%;
	margin: auto;
	margin-bottom: 5px;
}

/* DATE COLUMN */
.fixture-date {
    width: 90px;
    text-align: center;
    background: #f6f6f6;
    padding: 10px 6px;
    border-right: 1px solid #ddd;
}

.fixture-day {
    font-size: 1.3rem;
    font-weight: 700;
}

.fixture-month {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
}

.fixture-time {
    margin-top: 6px;
    font-size: 0.9rem;
    color: #333;
}

/* BODY */
.fixture-body {
    flex: 1;
    padding: 12px 16px;
}

/* COMPETITION */
.fixture-competition {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 6px;
}

/* TEAMS ROW */
.fixture-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* TEAM */
.fixture-team {
    display: flex;
    align-items: center;
    gap: 8px;
	text-transform: uppercase;
	width: 42%;
    font-weight: 600;
}

.fixture-home { text-align: right; }

.fixture-team img {
    width: 32px;
    height: 32px;
}

/* SCORE */
.fixture-score {
    font-size: 1.25rem;
    font-weight: 700;
    min-width: 60px;
    text-align: center;
}

/* FOOTER */
.fixture-footer {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* BUTTONS */
.fixture-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 4px;
    background: #e6e6e6;
    color: #222;
    text-decoration: none;
    font-weight: 600;
}

.fixture-btn.primary {
    background: #0057a3;
    color: #fff;
}

.fixture-btn:hover {
    opacity: 0.9;
}
/* end of new fixtures 2026 */