.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    background: #FFF;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.site-main .container {
    padding: 1rem;
}

.entry-header {
    padding: 1rem;
}
.mecz-wrapper {
    width: auto;
    margin: 1rem 0;
    border: 1px solid #ddd;
    padding: 0.5rem;
}
.mecz-info {
    margin-bottom: 0.5rem;
}
.mecz-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.mecz-data,
.mecz-rozgrywki,
.mecz-kolejka {
    font-size: 1rem;
    color: #333;
    white-space: nowrap;
}
.mecz-druzyny {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.druzyna-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.standings-logo {
    display: inline-block;
}
.standings-logo img {
    width: 25px;
    height: 25px;
}
.mecz-druzyna {
    font-size: 1rem;
    white-space: nowrap;
}
.mecz-wynik {
    font-size: 1rem;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
    white-space: nowrap;
}
.mecz-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
.match-button {
    font-size: 0.75rem;
    background: #e40001;
    padding: 0 0.75rem;
    width: max-content;
    white-space: nowrap;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    height: 2rem;
    line-height: 2rem;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}
.match-button:hover {
    background: #000;
    color: #ffffff;
}
.match-button-disabled {
    font-size: 0.75rem;
    background: #DDD;
    padding: 0 0.75rem;
    width: max-content;
    white-space: nowrap;
    text-transform: uppercase;
    height: 2rem;
    line-height: 2rem;
    color: #fff;
    display: inline-block;
    cursor: not-allowed;
}
.match-button-bilety {
    font-size: 0.75rem;
    background: #e40001;
    padding: 0 0.75rem;
    width: max-content;
    white-space: nowrap;
    text-transform: uppercase;
    height: 2rem;
    line-height: 2rem;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    animation: pulse 2s infinite ease-in-out;
}
.match-button-bilety:hover {
    background: #000;
    color: #ffffff;
    animation: none;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}
@media (max-width: 768px) {
    .mecz-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .mecz-meta {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    .druzyna-row {
        gap: 0.25rem;
    }
}