.scoreCardContainer {
    display: flex;
    background-color: #163439;
    flex-direction: column;
    color: #fff;
    /* gap: 10px; */
}
.eventTitle {

    color: #fff;
    position: relative;
    cursor: pointer;
    padding: 5px;
    font-weight: bold;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: start;
  }
  .tvIcon {
    width: 16px;
    height: 16px;
    object-fit: contain;
  }
  
  .leftSection {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .inPlayIcon {
    width: 16px;
    height: 16px;
  }
  
  .title {
    margin: 0;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: bold;
  }
  
  .rightSection {
    /* text-align: right; */
    flex-direction: column;
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-right: 10px;
  }
  
  .dateTime {
    /* font-size: 0.9rem; */
    /* white-space: nowrap; */
  }
  
  /* Hover effect for better UX */
  .eventTitle:hover {
    background-color: #1e4449;
    transition: background-color 0.2s ease;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .eventTitle {
      /* padding: 8px; */
    }
    
    .title {
      font-size: 0.9rem;
    }
    
    .dateTime {
      font-size: 12px;
      width: 100%;
      text-align: right;
      margin-right: 10px;
      padding: 0 10px;
    }
  }