body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #4b5563;
  /* margin-right: 1.5rem; */
}
/* 
a:hover {
  text-decoration: underline;
} */

/* Header */
/* header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d1d5db;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
} */

h1 {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Main Section */
.main-section {
  text-align: center;
  margin-bottom: 2.5rem;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

button {
  background-color: #374151;
  color: white;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s;
  margin-top: 1rem;
}

button:hover {
  background-color: #1f2937;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 64rem;
  margin: 0 auto 2.5rem auto; /* center horizontally + bottom margin */
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  border: 1px solid #d1d5db;
  border-radius: 1rem;
  padding: 1rem;
}

.team-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.team-square {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #d1d5db;
  border-radius: 0.25rem;
  margin-right: 1rem;
}

.team-name {
  font-weight: 500;
}

select {
  border: 1px solid #d1d5db;
  padding: 0.5rem;
  border-radius: 0.5rem;
  width: 10rem;
  margin-bottom: 1rem;
}

.content-box {
  width: 10rem;
  height: 10rem;
  border: 1px solid #9ca3af;
}

.content-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-logo-odds {
  display: flex;
  align-items: center; /* Center text horizontally */
  text-align: center; /* Optional, centers text inside each span */
  width: 24px;
  height: 24px;
  padding: 2px;
  margin-top: 7px;
}

.team-logo1 {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.game-item {
  margin-bottom: 15px; /* Adjust spacing as needed */
  gap: 10px; /* Optional: adds space between visitor and home */
}

.column-item {
  margin-bottom: 15px; /* Adjust spacing as needed */
  display: flex; /* Optional: keeps visitor/home side by side */
  gap: 20px; /* Optional: adds space between visitor and home */
  justify-content: center;
  align-items: center;
}
