/* ============================================================
   🟥 VTV 2025 – MATCHCARDS (FULL WIDTH CLEAN VERSION)
   ============================================================ */
.vtv-widget,
.vtv-matches {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: #1F2937;
  background: transparent;
  box-sizing: border-box;
}

/* Competitie secties */
.vtv-competition-section {
  background: #FFFFFF;
  border: 1px solid #EAECEF;
  border-radius: 7px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 100%;
  margin: 0 0 12px 0;
  padding: 0;
  overflow: hidden;
}

/* Header met competitie naam */
.vtv-section-header {
  border-bottom: 1px solid #EAECEF;
  background-color: #FFFFFF;
  padding: 8px 12px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vtv-section-header h3 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #8A94A6;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Competition logo */
.vtv-competition-logo {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
}

/* Fallback voor competition logo */
.vtv-competition-logo[src*="default.svg"],
.vtv-competition-logo:not([src]) {
  opacity: 0.5;
}

/* Wedstrijdkaart */
.vtv-match-card {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #EAECEF;
  transition: background 0.25s ease;
  margin: 0;
  padding: 11px 12px;
  width: 100%;
  gap: 12px;
}

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

.vtv-match-card:hover {
  background-color: #F9FAFB;
}

/* Tijd kolom links - nu links uitgelijnd en smaller */
.vtv-match-time-col {
  width: 82px;
  text-align: left;
  flex-shrink: 0;
  padding-left: 14px;
  padding-right: 9px;
  position: relative;
}

.vtv-match-time {
  color: #0061FF;
  font-weight: 600;
  font-size: 14px;
}

/* Verticale lijn tussen tijd en teams */
.vtv-match-time-col::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 2px;
  background-color: #EAECEF;
}

/* Teams midden */
.vtv-match-teams-col {
  flex: 1;
  padding: 0 12px 0 12px;
}

.vtv-team-row {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 3px 0;
}

.vtv-team-row:last-child {
  margin-bottom: 0;
}

/* Team logo - nu als <img> element */
.vtv-team-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  flex-shrink: 0;
  object-fit: contain;
}

/* Fallback styling als image niet laadt */
.vtv-team-icon[src*="default"],
.vtv-team-icon:not([src]),
.vtv-team-icon-placeholder {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-color: #EAECEF;
  border-radius: 3px;
  flex-shrink: 0;
}

.vtv-team-name {
  font-size: 14px;
  font-weight: 500;
  color: #1F2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Kanaal rechts */
.vtv-match-channel-col {
  width: 18%;
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

.vtv-channel-badge {
  width: 60px;
  height: 28px;
  border: 1px solid #D0D4DA;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
}

.vtv-channel-text {
  font-size: 10px;
  font-weight: 700;
  color: #1F2937;
  text-align: center;
}

/* Geen resultaten */
.vtv-no-results {
  text-align: center;
  padding: 40px 10px;
  color: #6B7280;
}