.nbbdb_singleteam {
  width: 60%; /* Adjust width as needed */
}

.nbbdb_singleteam_table {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Space between rows */
}

.nbbdb_singleteam_row {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between columns */
}

.nbbdb_singleteam_time-label {
  text-align: center;
  font-weight: bold;
  color: #333;
}

.nbbdb_singleteam_cell {
  flex: 1;
  padding: 12px 20px;
  background-color: #fff;
  border-radius: 8px; /* Rounded corners for each cell */
  text-align: center;
  font-size: 1.1em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nbbdb_singleteam_vs {
  color: #ff4d4d;
  font-weight: bold;
  margin: 0 10px;
}

.nbbdb_singleteam_row:nth-child(even) .nbbdb_singleteam_cell {
  background-color: #f9f9f9;
}

.nbbdb_singleteam_row:hover .nbbdb_singleteam_cell {
  background-color: #e6f7ff;
}

/* Responsive Styles */
@media (max-width: 600px) {
  .nbbdb_singleteam {
    width: 90%;
	overflow-x:auto;
  }

  .nbbdb_singleteam_row {
    flex-direction: column;
    align-items: flex-start;
    white-space: normal; /* Allow wrapping on smaller screens */
  }

  .nbbdb_singleteam_time-label,
  .nbbdb_singleteam_vs {
    text-align: left;
    margin: 5px 0;
  }

  .nbbdb_singleteam_cell {
    max-width: 100%; /* Allow cells to expand fully on small screens */
    width: 100%;
    padding: 10px;
  }
}
