body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: start;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
    
}

.container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    min-width: 400px;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 80;
}

h2 {
    text-align: center;
    margin-bottom: 50px;
}


.list-view {
    margin-top: 20px;
    max-height: 600;
    width: 100;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    background-color: #f9f9f9;
}

.item-container {
    padding: 10px;
    width: 90;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    background-color: #cedae6;
    border-radius: 4px;
    border: 1px solid #ddd;
}
/* .match-title{
    font-size: large;
    font-weight: bold;
    margin: 5;
}
.match-title-container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: stretch;
}
.score-number{
    margin: 5;
} */
.match-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px; /* Adjust the gap as needed */
}

.team {
  display: flex;
  align-items: center;
  gap: 5px; /* Space between logo and team name */
}

.team-logo {
  width: 20px; /* Adjust the width as needed */
  height: 20px; /* Adjust the height as needed */
  object-fit: contain; /* Ensure the logo retains its aspect ratio */
}

.match-title {
  font-weight: bold;
  font-size: 1.2em;
}

.score-number {
  width: 30px; /* Adjust the width as needed */
  text-align: center;
}
