@import url('/style/nav.css');

body {
    font-family: 'Arial', sans-serif;
    background-color: #e0f7fa;
    margin: 0;
    /* padding: 20px; */
}

.schedule-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.week {
    margin: 20px 0;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #b2dfdb, #e0f2f1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.week-title {
    background: linear-gradient(135deg, #4caf50, #a5d6a7);
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 20px;
    width: 100%;
}

.match-item {
    background-color: #ffffff;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
    width: 100%;
}

.match-item:hover {
    transform: translateY(-5px);
}

.match-date {
    font-weight: bold;
    color: #333;
}

.team-names {
    font-size: 16px;
    color: #555;
}

.week-title {
    font-size: 22px;
}

h1 {
    margin-bottom: 20px;
    color: #00796b;
}

.today {
    background: linear-gradient(135deg, #ffccbc, #ffab91);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media only screen and (min-width:300px) {
    .weeks-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px;
    }
}

@media only screen and (min-width:375px) {
    .weeks-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px;
    }
}

@media only screen and (min-width:768px) {
    .weeks-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 20px;
    }
}

@media only screen and (min-width:991px) {
    .weeks-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 20px;
    }
}