/* LOGO IMAGE */
.logo-container img {
  max-width: 300px;
  display: block;
  margin: 0.75rem auto 1.5rem auto;
}

/* Navbar shadow and rounded corners */
.navbar {
  box-shadow: 0 4px 24px rgba(0, 123, 255, 0.08);
  
}

/* Card styling */
.card {
  background: rgba(255,255,255,0.85);
  border-radius: 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: none;
  backdrop-filter: blur(2px);
  transition: transform 0.18s, box-shadow 0.18s;
}


/* Card title */
.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 1rem;
}

/* Modern button */
.btn-primary,
.modern-team-btn {
  background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  padding: 0.75rem 0;
}
.btn-primary:hover,
.btn-primary:focus,
.modern-team-btn:hover,
.modern-team-btn:focus {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(0,123,255,0.18);
  background: linear-gradient(90deg, #0056b3 0%, #007bff 100%);
}

/* Card grid spacing */
.row.gy-4 {
  gap: 2rem 0;
}

/* Table styling */
.table-responsive {
  max-width: 100%;
  padding-left: 2%;
  padding-right: 2%;
  margin-bottom: 2.5rem;
}
.table,
.standings-table {
  font-size: 0.95rem;
  border-collapse: collapse;
  background: rgba(255,255,255,0.92);
  border-radius: 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  overflow: hidden;
  border: none;
}
.table th,
.table td,
.standings-table th,
.standings-table td {
  text-align: center;
  vertical-align: middle;
  font-size: 1.08rem;
  padding: 0.85rem 0.5rem;
  border: none;
}
.table-dark th,
.standings-table thead.table-dark th {
  background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
}
.standings-table tbody tr {
  transition: background 0.18s;
}
.standings-table tbody tr:hover {
  background: rgba(0,123,255,0.07);
}

/* Homepage banner */
.homepage-banner {
  background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 2rem 1rem;
  border-radius: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .card-title {
    font-size: 1rem;
  }
  .btn-primary,
  .modern-team-btn {
    font-size: 0.95rem;
    padding: 0.6rem 0;
  }
  .standings-table th,
  .standings-table td,
  .table th,
  .table td {
    font-size: 0.95rem;
    padding: 0.6rem 0.3rem;
  }
}

/* Page background to match team homepage */
body,
body.bg-light {
  background: linear-gradient(135deg, #e3f0ff 0%, #f8f9fa 100%);
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  padding-top: 3em;
}




