/* Genel yapı */
.spaf-match-week-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 15px;
  margin: 25px auto;
  max-width: 100%;
  overflow-x: auto;
}

/* Başlık */
.spaf-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

/* Filtre alanı */
.spaf-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.spaf-filters select {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background-color: #f8f8f8;
  transition: all 0.2s ease;
}

.spaf-filters select:focus {
  border-color: #2196f3;
  background-color: #fff;
}

/* Hafta navigasyonu */
.spaf-week-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 15px 0;
}

.spaf-week-navigation button {
  background-color: #2196f3;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
}

.spaf-week-navigation button:hover {
  background-color: #1976d2;
}

.spaf-current-week {
  background: #f5f5f5;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;
  color: #333;
}

/* Tablo */
#spaf-week-results table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

#spaf-week-results th,
#spaf-week-results td {
  padding: 8px 10px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}

#spaf-week-results th {
  background-color: #1976d2;
  color: #fff;
  font-weight: 600;
}

#spaf-week-results td {
  background: #fff;
}

#spaf-week-results tr:nth-child(even) td {
  background-color: #f9f9f9;
}

/* Durum renkleri */
.spaf-status-played {
  background-color: #e8f5e9; /* Yeşil zemin */
  color: #2e7d32;
  font-weight: bold;
}

.spaf-status-upcoming {
  background-color: #e3f2fd; /* Mavi zemin */
  color: #1565c0;
  font-weight: bold;
}

.spaf-status-postponed {
  background-color: #fff3cd;
  color: #856404;
}

.spaf-status-cancelled {
  background-color: #f8d7da;
  color: #721c24;
}

.spaf-status-default {
  background-color: #f5f5f5;
  color: #333;
}

/* Yükleniyor veya mesaj */
.spaf-loading, .spaf-no-matches {
  text-align: center;
  padding: 20px;
  color: #555;
  font-style: italic;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  .spaf-match-week-wrapper {
    padding: 10px;
  }

  .spaf-filters {
    flex-direction: column;
    align-items: center;
  }

  .spaf-week-navigation {
    gap: 8px;
  }

  #spaf-week-results th,
  #spaf-week-results td {
    padding: 6px;
    font-size: 13px;
  }
}
