/* Container and general layout */
.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

/* Form styling */
.team-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.team-form select,
.team-form button {
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.team-form button {
    background-color: #0077cc;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.team-form button:hover {
    background-color: #005fa3;
}

/* Fixtures list */
.fixtures-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Fixture card */
.fixture-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.15s, box-shadow 0.15s;
}

.fixture-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.fixture-week {
    font-weight: bold;
    color: #0077cc;
    margin-right: 15px;
}

.fixture-info {
    flex-grow: 1;
}

.teams {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 4px;
}

.details {
    color: #555;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .fixture-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .fixture-week {
        margin-bottom: 8px;
    }
}