/* General container styling */
.fixtures-container {
    width: 90%;
    margin: auto;
    padding: 40px 0;
}

/* Next fixture box with shadow effect */
.next-fixture {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #f1f1f1;
    background-color: #0B0B0B;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Shadow effect */
}

.next-fixture h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.fixture-teams {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
}

.team img {
    max-width: 100px;
}

.versus {
    font-size: 40px;
    font-weight: bold;
}

/* Results section */
.results h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

/* Results table styling */
.results-table {
    max-width: 100%;
    overflow-x: auto; /* Ensure the table is scrollable on small devices */
}

.results-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.results-table td {
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
    font-weight: normal; /* Ensure all text is normal weight (not bold) */
}

/* Color coding for results */
.score.win {
    color: #00FF00; /* Green for Win */
}

.score.loss {
    color: #FF0000; /* Red for Loss */
}

.score.draw {
    color: #808080; /* Grey for Draw */
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .fixture-teams {
        flex-direction: column;
    }

    .team img {
        max-width: 80px;
    }

    .versus {
        margin: 20px 0;
    }
}
