.copa-wrapper {
    --copa-primary: #0073aa;
    font-family: sans-serif;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.copa-error {
    color: #d32f2f;
    background: #ffebee;
    padding: 10px;
    border-radius: 4px;
}
.copa-list, .copa-grid {
    list-style: none;
    padding: 0;
    margin: 0;
}
.copa-matches li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.copa-date {
    color: var(--copa-primary);
    font-size: 0.9em;
    min-width: 80px;
}
.copa-table {
    width: 100%;
    border-collapse: collapse;
}
.copa-table th, .copa-table td {
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.copa-table th:nth-child(2), .copa-table td:nth-child(2) {
    text-align: left;
}
.copa-teams {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}
.copa-teams li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 6px;
}
.copa-teams img {
    margin-bottom: 10px;
    max-width: 40px;
    height: auto;
}