.widget-card {
  width: 100%;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

/* Cabeçalho */
.widget-header {
  color: #111; /* preto */
  font-weight: 600;
  font-size: 15px;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}

/* ============================
   CLASSIFICAÇÃO
   ============================ */
.standings table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.standings thead th {
  text-align: left;
  padding: 6px 10px;
  font-weight: 600;
  font-size: 12px;
  color: #555;
  border-bottom: 1px solid #ddd;
}

.standings tbody td {
  padding: 8px 10px;
  vertical-align: middle;
  border-bottom: 1px solid #f1f1f1;
}

.standings td:first-child {
  width: 20px;
}

.standings td.points {
  /*text-align: right;*/
  font-weight: bold;
}

.standings .team {
  display: flex;
  align-items: center;
  gap: 6px;
}

.standings .team img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ============================
   ÚLTIMOS JOGOS
   ============================ */
.match {
  padding: 10px 16px;
}

.competition {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
  text-align: center;
}

.teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.team {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
}

.team img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.score {
  font-size: 16px;
  font-weight: bold;
  color: #111;
  white-space: nowrap;
}

.score b {
  font-weight: normal;
  margin: 0 2px;
}

.divider {
  border-top: 1px solid #eee;
  margin: 0 16px;
}

/* ============================
   RODAPÉ
   ============================ */
.more {
    padding: 10px 16px;
    display: flex;
    justify-content: space-between; /* link à esquerda, logo à direita */
    align-items: center;
    margin-top: 8px;
}

.more a {
    color: #111; /* preto */
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.more a:hover {
    text-decoration: underline;
}