body {
    margin: 0;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background-color: #121212;
    font-family: 'Arial', sans-serif;
    color: azure;
    
    
}

.center-vertical {
    vertical-align: middle !important;
}

.footer{
    flex-shrink: 0;
    /* Set the footer height */
    /* Position the footer at the bottom */
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.footer2{
    flex-shrink: 0;
    /* Set the footer height */
    /* Position the footer at the bottom */
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: #10155e;
    color: #fff;
    text-align: center;
}
    
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.content {
    flex: 1;
    /* This will make the content take up all available space */
    min-height: 75vh;
}



.main-content {
    height: 100%;
    /* position: relative; */
    top: 0;
    /* left: 0; */
    width: 100%;
    /* margin-left: 13%; Same as sidebar width */
    padding: 20px;
}


.rowCenter {
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
    height: 100vh; /* Full viewport height */
}


.hide{
    display: none;
    visibility: hidden;
}
    

 .table-container {
  overflow-x: auto;
  margin-top: 1rem;
}

table {
  min-width: 600px; /* Ensures the table doesn't squash too much */
}

@media (max-width: 768px) {
  .teams {
    flex-direction: column;
  }

  .team {
    width: 100%;
    margin-bottom: 1rem;
  }

  .score {
    font-size: 1.5rem;
  }

  table {
    font-size: 0.8rem;
  }
}   




/* ****************************** */
.game-card {
  display: block;
  background: #1a1a1a;
  border-radius: 1rem;
  padding: 1rem;
  margin: 1rem auto;
  max-width: 500px;
  color: #fff;
  text-decoration: none;
  border: 1px solid #333;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.game-card:hover {
  transform: scale(1.03);
}

.teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.2rem;
}

.team {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.team img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #fff;
}

.vs {
  font-weight: bold;
  font-size: 1.5rem;
  color: #aaa;
}

.details {
  margin-top: 1rem;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: #aaa;
}
