/* Container Principal */
.jns-competition-wrapper {
    max-width: 100%;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.jns-phase-title {
    background: #004d99; /* Azul Salesianos */
    color: white;
    padding: 10px 15px;
    border-radius: 4px 4px 0 0;
    margin-bottom: 0;
    margin-top: 20px;
    font-size: 1.1rem;
}

/* Match Cards - Mobile First Approach */
.jns-match-list {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-top: none;
    margin-bottom: 20px;
}

.jns-match-card {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-bottom: 1px solid #eee;
    background: white;
    transition: background 0.2s;
}

.jns-match-card:last-child {
    border-bottom: none;
}

.jns-match-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.jns-match-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jns-team {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.jns-team.home {
    justify-content: flex-end;
    text-align: right;
}

.jns-team.away {
    justify-content: flex-start;
    text-align: left;
}

.jns-team .name {
    font-weight: bold;
    font-size: 1rem;
}

.jns-team .score {
    background: #222;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.jns-vs {
    font-size: 0.8rem;
    color: #999;
    margin: 0 10px;
}

.jns-match-details {
    text-align: center;
    color: #888;
    margin-top: 5px;
    font-style: italic;
}

/* Tabelas de Classificação */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

.jns-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: white;
}

.jns-table th, .jns-table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.jns-table th {
    background: #f4f4f4;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.jns-table td:nth-child(2) { /* Coluna Equipa */
    text-align: left;
    min-width: 150px;
}

/* Desktop Adjustments */
@media (min-width: 768px) {
    .jns-match-card {
        flex-direction: row;
        align-items: center;
    }
    
    .jns-match-meta {
        flex-direction: column;
        width: 150px;
        margin-bottom: 0;
        margin-right: 20px;
        border-right: 1px solid #eee;
    }

    .jns-match-score {
        flex: 1;
    }
}