.injuries-section {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #343a40;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.injuries-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.team-injuries {
    flex: 1;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.away-injuries .team-title {
    color: #e63946; /* Away Team Color */
    border-bottom: 3px solid #e63946;
}

.home-injuries .team-title {
    color: #1f77d0; /* Home Team Color */
    border-bottom: 3px solid #1f77d0;
}

.team-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.injuries-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.injury-card {
    width: 260px;
    min-height: 220px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #ffffff, #f1f3f5);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.injury-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.injury-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.injury-details {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.injury-player a {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1f3b77;
    text-decoration: none;
}

.injury-player a:hover {
    text-decoration: underline;
}

.injury-status,
.injury-date,
.injury-note {
    font-size: 1rem;
    color: #495057;
}

/* Mobile Styling */
@media (max-width: 768px) {
    .injuries-container {
        flex-direction: column;
    }

    .team-injuries {
        margin-bottom: 20px;
    }
}
