/* Fixtures Page Enhancements - Rwanda Premier League */
.fixtures-section {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(135deg, #0d2c40, #1a5276);
  color: white;
  overflow: hidden;
}

/* Add Rwanda-inspired pattern overlay */
.fixtures-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.03;
}

.fixtures-section-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.fixtures-section-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a5276 0%, #3498db 100%);
  color: white;
  font-size: 24px;
  border-radius: 50%;
  margin-right: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(52, 152, 219, 0.5);
  position: relative;
  overflow: hidden;
}

.fixtures-section-icon::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.2) 0%, rgba(26, 82, 118, 0.2) 100%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 3s infinite;
}

.fixtures-section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.fixtures-section-divider {
  height: 4px;
  width: 100px;
  background: linear-gradient(to right, #3498db, rgba(255, 255, 255, 0.3));
  margin-bottom: 30px;
  border-radius: 2px;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Team Search Form */
.team-search-container {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.team-search-form {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 20px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 700px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.team-search-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #00a651, #fdd216, #3498db);
  border-radius: 10px 10px 0 0;
}

.team-search-form .form-group {
  margin-bottom: 0;
}

.team-search-form label {
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
  display: block;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.team-search-form .custom-select-wrapper {
  position: relative;
}

.team-search-form select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-search-form select:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
  outline: none;
}

.team-search-form select option {
  background-color: #1a5276;
  color: white;
}

.team-search-form .select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: white;
}

.team-search-btn {
  background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(41, 128, 185, 0.3);
  width: 100%;
  margin-top: 15px;
}

.team-search-btn:hover {
  background: linear-gradient(135deg, #154360 0%, #2471a3 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.4);
}

.team-search-btn i {
  margin-right: 8px;
  font-size: 16px;
}

/* Fixtures Tabs */
.fixtures-tabs {
  margin-bottom: 30px;
}

.fixtures-tabs .nav-tabs {
  border: none;
  gap: 10px;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.fixtures-tabs .nav-link {
  background: #fff;
  color: #555;
  border: 1px solid #eaeaea;
  border-radius: 30px;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.fixtures-tabs .nav-link i {
  margin-right: 8px;
  font-size: 16px;
}

.fixtures-tabs .nav-link.active {
  background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.fixtures-tabs .nav-link:hover:not(.active) {
  background: #e9ecef;
  color: #333;
  transform: translateY(-2px);
}

/* Modern Fixtures Timeline - 2 Columns */
.fixtures-timeline {
  margin-bottom: 40px;
}

.fixture-date-container {
  margin-bottom: 20px;
  position: relative;
}

/* Convert the list-group-fixtures to a grid layout */
.list-group-fixtures {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  padding: 0;
  list-style: none;
}

.list-group-fixtures > li {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .list-group-fixtures > li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.fixture-date-title {
  background: linear-gradient(145deg, #2980b9, #3498db);
  color: white;
  padding: 8px 15px;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  position: sticky;
  top: 80px;
  z-index: 10;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(41, 128, 185, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.fixture-date-title::before {
  content: '\f073'; /* Calendar icon */
  font-family: 'Font Awesome 5 Free';
  margin-right: 10px;
  font-weight: 900;
}

@media (max-width: 991px) {
  .fixture-date-title {
    position: relative;
    top: 0;
  }
}
  border-radius: 10px 10px 0 0;
  box-shadow: 0 3px 10px rgba(41, 128, 185, 0.2);
}

.fixture-date-title::before {
  content: '\f073';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 10px;
  font-size: 18px;
}

.list-group-fixtures {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.list-group-fixtures li {
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .list-group-fixtures li {
    width: 100%;
  }
}

.fixture-item {
  padding: 20px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 3px solid #2980b9;
}

.fixture-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Add Rwandan flag color accents to different match status */
.fixture-item.upcoming {
  border-top-color: #00a1de; /* Blue from Rwanda flag */
}

.fixture-item.completed {
  border-top-color: #20603d; /* Green from Rwanda flag */
}

.fixture-item.live {
  border-top-color: #e5be01; /* Yellow from Rwanda flag */
}

.fixture-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #2980b9 30%, transparent 30%);
  background-size: 20px 100%;
  opacity: 0.5;
}

.fixture-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-top-color: #1a5276;
}

/* For completed matches with scores */
.fixture-item.completed {
  border-top-color: #2ecc71;
}

.fixture-item.completed::after {
  background: linear-gradient(to right, #2ecc71 30%, transparent 30%);
  background-size: 20px 100%;
}

/* For live matches */
.fixture-item.live {
  border-top-color: #e74c3c;
}

.fixture-item.live::after {
  background: linear-gradient(to right, #e74c3c 30%, transparent 30%);
  background-size: 20px 100%;
}

.fixture-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 15px;
}

.fixture-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 45%;
}

.team img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  padding: 5px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  margin-bottom: 10px;
  border: 1px solid #eaeaea;
}

.fixture-item:hover .team img {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.team span {
  font-weight: 600;
  color: #333;
  font-size: 16px;
  text-align: center;
}

.fixture-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 10%;
}

.fixture-divider .vs {
  font-weight: 700;
  color: #ffff;
  font-size: 16px;
  padding-top:10px;
}

.fixture-score {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
  color: white;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 3px 10px rgba(41, 128, 185, 0.3);
  margin: 15px auto;
  min-width: 120px;
  text-align: center;
}

.fixture-score .score-divider {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.8);
}

.fixture-score.live-score {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
  }
}

.fixture-score .live-indicator {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #e74c3c;
  color: white;
  padding: 2px 8px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(231, 76, 60, 0.5);
  text-transform: uppercase;
}

.fixture-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f8f9fa;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  min-width: 120px;
  text-align: center;
  margin: 15px auto;
 
}

.fixture-time .time {
  font-weight: 700;
  color: #2980b9;
  font-size: 18px;
  margin-bottom: 5px;
}

.fixture-time .stadium {
  font-size: 12px;
  color: #777;
}

.fixture-footer {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px dashed #eaeaea;
}

.fixture-details-left, .fixture-details-right {
  display: flex;
  gap: 15px;
}

.btn-fixture-details, 
.btn-set-reminder,
.btn-view-highlights,
.btn-match-stats {
  background: none;
  border: none;
  color: #2980b9;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.btn-fixture-details:hover, 
.btn-set-reminder:hover,
.btn-view-highlights:hover,
.btn-match-stats:hover {
  background-color: rgba(41, 128, 185, 0.1);
  color: #1a5276;
  transform: translateY(-2px);
}

.btn-fixture-details i, 
.btn-set-reminder i,
.btn-view-highlights i,
.btn-match-stats i {
  margin-right: 5px;
}

.fixture-status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.fixture-status-badge.upcoming {
  background: #3498db;
}

.fixture-status-badge.live {
  background: #e74c3c;
  animation: pulse-red 2s infinite;
}

.fixture-status-badge.completed {
  background: #2ecc71;
}

.fixture-status-badge.postponed {
  background: #f39c12;
}

.fixture-status-badge.cancelled {
  background: #7f8c8d;
}

/* Match Statistics Section */
.match-stats-section {
  background-color: #f8f9fa;
  padding: 60px 0;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%232980b9' fill-opacity='0.05'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.match-stat-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
  border: 1px solid #eaeaea;
  position: relative;
  overflow: hidden;
}

.match-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #d1d1d1;
}

.stat-icon {
  font-size: 28px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.stat-info h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #2980b9;
  margin-bottom: 5px;
}

.stat-subtitle {
  color: #777;
  font-size: 14px;
}

/* Empty state */
.fixtures-empty-state {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.fixtures-empty-state i {
  font-size: 50px;
  color: #bdc3c7;
  margin-bottom: 20px;
}

.fixtures-empty-state h3 {
  font-size: 24px;
  color: #7f8c8d;
  margin-bottom: 15px;
}

.fixtures-empty-state p {
  color: #95a5a6;
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Venue Section */
.stadium-showcase-section {
  background-color: #ffffff;
  padding: 60px 0;
  position: relative;
  /* background-image: url("data:image/svg+xml,%3Csvg width='40' height='12' viewBox='0 0 40 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6.172L6.172 0h5.656L0 11.828V6.172zm40 5.656L28.172 0h5.656L40 6.172v5.656zM6.172 12l12-12h3.656l12 12h-5.656L20 3.828 11.828 12H6.172zm12 0L20 10.172 21.828 12h-3.656z' fill='%232980b9' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E"); */
}

.venue-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
  border: 1px solid #eaeaea;
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.venue-image {
  height: 200px;
  overflow: hidden;
}

.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.venue-card:hover .venue-image img {
  transform: scale(1.1);
}

.venue-details {
  padding: 20px;
}

.venue-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.venue-info {
  color: #777;
  font-size: 14px;
  margin-bottom: 15px;
}

.venue-capacity {
  display: flex;
  align-items: center;
  color: #2980b9;
  font-weight: 500;
  margin-bottom: 15px;
}

.venue-capacity i {
  margin-right: 5px;
}

.btn-venue-details {
  display: inline-flex;
  align-items: center;
  background-color: #2980b9;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-venue-details:hover {
  background-color: #1a5276;
  transform: translateY(-2px);
}

.btn-venue-details i {
  margin-left: 5px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #2980b9;
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.btn-view-all:hover {
  background-color: #1a5276;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(41, 128, 185, 0.4);
  color: white;
  text-decoration: none;
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination {
  display: flex;
  gap: 5px;
}

.pagination .page-item .page-link {
  background-color: #fff;
  border: 1px solid #eaeaea;
  color: #2980b9;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s;
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
  background-color: #2980b9;
  border-color: #2980b9;
  color: #fff;
}

.pagination .page-item.disabled .page-link {
  background-color: #f8f9fa;
  border-color: #eaeaea;
  color: #aaa;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .fixture-teams {
    gap: 20px;
  }
  
  .team {
    width: 100%;
  }
  
  .fixture-divider {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .fixture-footer {
    flex-direction: column;
    gap: 15px;
  }
  
  .fixture-details-left, .fixture-details-right {
    justify-content: center;
  }
  
  .fixtures-tabs .nav-tabs {
    flex-direction: row;
    gap: 10px;
  }
  
  .fixtures-tabs .nav-link {
    width: 100%;
    justify-content: center;
  }
}

.team-search-form select:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
  outline: none;
}

.team-search-form .select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #3498db;
}

.team-search-btn {
  background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(41, 128, 185, 0.3);
  width: 100%;
  margin-top: 15px;
}

.team-search-btn:hover {
  background: linear-gradient(135deg, #154360 0%, #2471a3 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.4);
}

.team-search-btn i {
  margin-right: 8px;
  font-size: 16px;
}

/* Fixtures Tabs */
.fixtures-tabs {
  margin-bottom: 30px;
}

.fixtures-tabs .nav-tabs {
  border: none;
  gap: 10px;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.fixtures-tabs .nav-link {
  background: #f8f9fa;
  color: #555;
  border: 1px solid #eaeaea;
  border-radius: 30px;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.fixtures-tabs .nav-link i {
  margin-right: 8px;
  font-size: 16px;
}

.fixtures-tabs .nav-link.active {
  background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.fixtures-tabs .nav-link:hover:not(.active) {
  background: #e9ecef;
  color: #333;
  transform: translateY(-2px);
}

/* Modern Fixtures Timeline */
.fixtures-timeline {
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid transparent;
  margin-bottom: 40px;
}

.fixture-date-container {
  margin-bottom: 0;
  position: relative;
}

.fixture-date-title {
  background: linear-gradient(145deg, #f5f5f5, #e9e9e9);
  color: #333;
  padding: 15px 20px;
  margin: 0;
  border-bottom: 1px solid #eaeaea;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 5;
}

.fixture-date-title::before {
  content: '\f073';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 10px;
  color: white;
  font-size: 18px;
}

.list-group-fixtures {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-group-fixtures li {
  border-bottom: 1px solid #eaeaea;
}

.list-group-fixtures li:last-child {
  border-bottom: none;
}

.fixture-item {
  padding: 20px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.fixture-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #2980b9;
  opacity: 0;
  transition: all 0.3s;
}

.fixture-item:hover {
  background-color: rgba(52, 152, 219, 0.05);
}

.fixture-item:hover::before {
  opacity: 1;
}

/* For completed matches with scores */
.fixture-item.completed {
  background-color: rgba(46, 204, 113, 0.05);
}

.fixture-item.completed::before {
  background: #2ecc71;
  opacity: 1;
}

/* For live matches */
.fixture-item.live {
  background-color: rgba(231, 76, 60, 0.05);
}

.fixture-item.live::before {
  background: #e74c3c;
  opacity: 1;
}

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

.team {
  display: flex;
  align-items: center;
  flex: 1;
}

.team img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid #eaeaea;
  padding: 3px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.fixture-item:hover .team img {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

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

.team-left span {
  margin-right: 15px;
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

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

.team-right span {
  margin-left: 15px;
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

.fixture-score {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
  color: white;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 3px 10px rgba(41, 128, 185, 0.3);
  position: relative;
  min-width: 100px;
  text-align: center;
}

.fixture-score .score-divider {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.8);
}

.fixture-score.live-score {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
  }
}

.fixture-score .live-indicator {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #e74c3c;
  color: white;
  padding: 2px 8px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(231, 76, 60, 0.5);
  text-transform: uppercase;
}

.fixture-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 20px;
  background: #f8f9fa;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  min-width: 100px;
  text-align: center;
}

.fixture-time .time {
  font-weight: 700;
  color: #2980b9;
  font-size: 18px;
  margin-bottom: 5px;
}

.fixture-time .stadium {
  font-size: 12px;
  color: #777;
}

.fixture-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed #eaeaea;
}

.fixture-details-left, .fixture-details-right {
  display: flex;
  gap: 15px;
}

.btn-fixture-details, 
.btn-set-reminder,
.btn-view-highlights,
.btn-match-stats {
  background: none;
  border: none;
  color: #2980b9;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.btn-fixture-details:hover, 
.btn-set-reminder:hover,
.btn-view-highlights:hover,
.btn-match-stats:hover {
  background-color: rgba(41, 128, 185, 0.1);
  color: #1a5276;
  transform: translateY(-2px);
}

.btn-fixture-details i, 
.btn-set-reminder i,
.btn-view-highlights i,
.btn-match-stats i {
  margin-right: 5px;
}

.fixture-status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.fixture-status-badge.upcoming {
  background: #3498db;
}

.fixture-status-badge.live {
  background: #e74c3c;
  animation: pulse-red 2s infinite;
}

.fixture-status-badge.completed {
  background: #2ecc71;
}

.fixture-status-badge.postponed {
  background: #f39c12;
}

.fixture-status-badge.cancelled {
  background: #7f8c8d;
}

/* Match Statistics Section */
.match-stats-section {
  background-color: #f8f9fa;
  padding: 60px 0;
  position: relative;
}

.match-stat-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
  border: 1px solid #eaeaea;
  position: relative;
  overflow: hidden;
}

.match-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #d1d1d1;
}

.stat-icon {
  font-size: 28px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.stat-info h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #2980b9;
  margin-bottom: 5px;
}

.stat-subtitle {
  color: #777;
  font-size: 14px;
}

/* Empty state */
.fixtures-empty-state {
  text-align: center;
  padding: 50px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 40px;
}

.fixtures-empty-state i {
  font-size: 50px;
  color: #bdc3c7;
  margin-bottom: 20px;
}

.fixtures-empty-state h3 {
  font-size: 24px;
  color: #7f8c8d;
  margin-bottom: 15px;
}

.fixtures-empty-state p {
  color: #95a5a6;
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Venue Section */
.stadium-showcase-section {
  background-color: #ffffff;
  padding: 60px 0;
  position: relative;
}

.venue-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
  border: 1px solid #eaeaea;
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.venue-image {
  height: 200px;
  overflow: hidden;
}

.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.venue-card:hover .venue-image img {
  transform: scale(1.1);
}

.venue-details {
  padding: 20px;
}

.venue-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.venue-info {
  color: #777;
  font-size: 14px;
  margin-bottom: 15px;
}

.venue-capacity {
  display: flex;
  align-items: center;
  color: #2980b9;
  font-weight: 500;
  margin-bottom: 15px;
}

.venue-capacity i {
  margin-right: 5px;
}

.btn-venue-details {
  display: inline-flex;
  align-items: center;
  background-color: #2980b9;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-venue-details:hover {
  background-color: #1a5276;
  transform: translateY(-2px);
}

.btn-venue-details i {
  margin-left: 5px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #2980b9;
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.btn-view-all:hover {
  background-color: #1a5276;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(41, 128, 185, 0.4);
  color: white;
  text-decoration: none;
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination {
  display: flex;
  gap: 5px;
}

.pagination .page-item .page-link {
  background-color: #fff;
  border: 1px solid #eaeaea;
  color: #2980b9;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s;
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
  background-color: #2980b9;
  border-color: #2980b9;
  color: #fff;
}

.pagination .page-item.disabled .page-link {
  background-color: #f8f9fa;
  border-color: #eaeaea;
  color: #aaa;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .fixture-header {
    flex-direction: row;
    gap: 20px;
  }
  
  .team {
    justify-content: center;
  }
  
  .team-left, .team-right {
    text-align: center;
  }
  
  .team-left span, .team-right span {
    margin: 0 10px;
  }
  
  .fixture-time, .fixture-score {
    margin: 10px 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .fixture-footer {
    flex-direction: column;
    gap: 15px;
  }
  
  .fixture-details-left, .fixture-details-right {
    justify-content: center;
  }
  
  .fixtures-tabs .nav-tabs {
    flex-direction: row;
    gap: 10px;
  }
  
  .fixtures-tabs .nav-link {
    width: 100%;
    justify-content: center;
  }
}
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
  outline: none;
}

.team-search-form .select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #3498db;
}

.team-search-btn {
  background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(41, 128, 185, 0.3);
  width: 100%;
  margin-top: 15px;
}

.team-search-btn:hover {
  background: linear-gradient(135deg, #154360 0%, #2471a3 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.4);
}

.team-search-btn i {
  margin-right: 8px;
  font-size: 16px;
}

/* Fixtures Timeline */
.fixtures-timeline {
  background-color: transparent;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid transparent;
}

.fixture-date-container {
  margin-bottom: 20px;
}
.fixture-date-container::before{
    position:unset;
}

.fixture-date-title {
  background: linear-gradient(145deg, #f5f5f5, #e9e9e9);
  color: #333;
  padding: 15px 20px;
  margin: 0;
  border-bottom: 1px solid #eaeaea;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.fixture-date-title::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: #2980b9;
  font-size: 18px;
}

.list-group-fixtures {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-group-fixtures li {
  border-bottom: 1px solid #eaeaea;
}

.list-group-fixtures li:last-child {
  border-bottom: none;
}

.fixture-item {
  padding: 15px 20px;
  transition: all 0.3s;
  cursor: pointer;
}

.fixture-item:hover {
  background-color: rgba(52, 152, 219, 0.05);
}

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

.team {
  display: flex;
  align-items: center;
  flex: 1;
}

.team img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #eaeaea;
  padding: 3px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.fixture-item:hover .team img {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

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

.team-left span {
  margin-right: 10px;
  font-weight: 600;
  color: #333;
}

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

.team-right span {
  margin-left: 10px;
  font-weight: 600;
  color: #333;
}

.fixture-time {
  display: flex;
  flex-direction: column;
  align-items: center;
   width: fit-content !important;
      margin: auto;
    padding: 5px 10px;
}

.fixture-time .time {
  font-weight: 700;
  color: #2980b9;
  font-size: 18px;
  margin-bottom: 5px;
}

.fixture-time .stadium {
  font-size: 12px;
  color: #777;
}

.fixture-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.btn-fixture-details,
.btn-set-reminder {
  background: none;
  border: none;
  color: #2980b9;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.btn-fixture-details:hover,
.btn-set-reminder:hover {
  background-color: rgba(41, 128, 185, 0.1);
  color: #1a5276;
}

.btn-fixture-details i,
.btn-set-reminder i {
  margin-right: 5px;
}

/* Match Statistics Section */
.match-stats-section {
  background-color: #f8f9fa;
  padding: 60px 0;
  position: relative;
}

.match-stat-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
  border: 1px solid #eaeaea;
  position: relative;
  overflow: hidden;
}

.match-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #d1d1d1;
}

.stat-icon {
  font-size: 28px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.stat-info h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #2980b9;
  margin-bottom: 5px;
}

.stat-subtitle {
  color: #777;
  font-size: 14px;
}

/* Venue Section */
.stadium-showcase-section {
  background-color: #ffffff;
  padding: 60px 0;
  position: relative;
}

.venue-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
  border: 1px solid #eaeaea;
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.venue-image {
  height: 200px;
  overflow: hidden;
}

.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.venue-card:hover .venue-image img {
  transform: scale(1.1);
}

.venue-details {
  padding: 20px;
}

.venue-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.venue-info {
  color: #777;
  font-size: 14px;
  margin-bottom: 15px;
}

.venue-capacity {
  display: flex;
  align-items: center;
  color: #2980b9;
  font-weight: 500;
  margin-bottom: 15px;
}

.venue-capacity i {
  margin-right: 5px;
}

.btn-venue-details {
  display: inline-flex;
  align-items: center;
  background-color: #2980b9;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-venue-details:hover {
  background-color: #1a5276;
  transform: translateY(-2px);
}

.btn-venue-details i {
  margin-left: 5px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #2980b9;
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.btn-view-all:hover {
  background-color: #1a5276;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(41, 128, 185, 0.4);
  color: white;
  text-decoration: none;
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination {
  display: flex;
  gap: 5px;
}

.pagination .page-item .page-link {
  background-color: #fff;
  border: 1px solid #eaeaea;
  color: #2980b9;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s;
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
  background-color: #2980b9;
  border-color: #2980b9;
  color: #fff;
}

.pagination .page-item.disabled .page-link {
  background-color: #f8f9fa;
  border-color: #eaeaea;
  color: #aaa;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .fixture-header {
    flex-direction: column;
    gap: 15px;
  }

  .team {
    justify-content: center;
  }

  .team-left {
    text-align: center;
  }

  .team-right {
    text-align: center;
  }

  .fixture-time {
    margin: 15px 0;
  }

  .fixture-footer {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

/* Rwanda Premier League Styles - Home Page Match */
.rwanda-enhanced-styles {
  --rpl-blue: #3498db;
  --rpl-green: #2ecc71;
  --rpl-dark-blue: #1a5276;
  --rpl-yellow: #f1c40f;
}

/* Add Rwanda-inspired patterns and accents */
.rwanda-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
}

.agaseke-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55.134l1 1.732-17.32 10-1-1.732 17.32-10zM103.632 9.732l1.732 1-10 17.32-1.732-1 10-17.32zm-60 60l1.732 1-10 17.32-1.732-1 10-17.32zm-35.368 0l1.732 1-10 17.32-1.732-1 10-17.32zM97 80v2H77v-2h20zm-40 40v2H37v-2h20zm39.32-55.134l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM112 0h2v20h-2V0zm-97.32 0l1 1.732-17.32 10-1-1.732 17.32-10zM0 49v2h20v-2H0zm92.32 34.134l1 1.732-17.32 10-1-1.732 17.32-10zm-20 0l1 1.732-17.32 10-1-1.732 17.32-10zM77 49v2H57v-2h20zm-40 40v2H17v-2h20zm-40 0v2H0v-2h17z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.03) 2px,
    transparent 2px
  );
  background-size: 30px 30px;
  z-index: 0;
  pointer-events: none;
}

/* Enhanced Tabs */
.rwanda-enhanced-styles .nav-tabs {
  border: none;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rwanda-enhanced-styles .nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.rwanda-enhanced-styles .nav-link:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}

.rwanda-enhanced-styles .nav-link.active {
  color: white;
  background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-bottom: none !important;
}

/* Enhanced Fixture Items */
.rwanda-enhanced-styles .fixture-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  color: white;
}

.rwanda-enhanced-styles .fixture-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
  z-index: 1;
}

.rwanda-enhanced-styles .fixture-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.rwanda-enhanced-styles .fixture-header {
  display:block;
  padding-top: 10px;
  padding-bottom: 0px;
  padding-left: 15px;
  padding-right: 15px;
  z-index: 2;
  position: relative;
  background:unset;
  margin-top:10px
}

.rwanda-enhanced-styles .fixture-date-title {
  color: white;
  background: linear-gradient(135deg, rgba(26, 82, 118, 0.8), rgba(52, 152, 219, 0.8));
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  top: unset;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.rwanda-enhanced-styles .team img {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.rwanda-enhanced-styles .fixture-item:hover .team img {
  transform: scale(1.1);
}

.rwanda-enhanced-styles .team span {
  color: #336699;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.rwanda-enhanced-styles .fixture-status-badge {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(26, 82, 118, 0.9));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: white;
}

/* Add pulse animation for live indicators */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pulse-icon {
  animation: pulse 2s infinite;
}

/* Enhanced Fixture Styling - Rwanda Premier League */
.rwanda-enhanced-styles .fixture-status-badge {
  padding: 5px 5px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 9;
  top: 5px;
  right: 10px;
}

.rwanda-enhanced-styles .fixture-status-badge.upcoming {
  background: linear-gradient(145deg, #2980b9, #3498db);
  border-left: 3px solid #00a1de; /* Blue from Rwanda flag */
}

.rwanda-enhanced-styles .fixture-status-badge.live {
  background: linear-gradient(145deg, #c0392b, #e74c3c);
  border-left: 3px solid #e5be01; /* Yellow from Rwanda flag */
}

.rwanda-enhanced-styles .fixture-status-badge.completed {
  background: linear-gradient(145deg, #27ae60, #2ecc71);
  border-left: 3px solid #20603d; /* Green from Rwanda flag */
}

/* Add subtle hover effects to fixture cards */
.fixture-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fixture-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

/* Make the date headers stick to top when scrolling for better navigation */
.fixture-date-title {
  position: sticky;
  top: 70px;
  z-index: 5;
  margin-bottom: 15px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
