*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #edeef0;
}

a {
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

.scoreboard-container {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 100%;
  overflow: hidden;
}

.upcoming-button {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
  background-color: #f9f9f9;
  cursor: pointer;
}

.matches-container {
  display: flex;
  gap: 10px;
  flex: 1;
  overflow: hidden; /* Prevent native scrollbars */
}

.match-item {
  border: 1px solid #ddd;
  padding: 5px 10px;
  text-align: start;
  font-size: 14px;
  white-space: nowrap; /* Prevent wrapping */
}

.match-item img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}

.match-date {
  font-weight: bold;
  font-size: 12px;
  color: #555;
  margin-bottom: 5px;
}

.navigation {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #333;
}

.navigation-btn {
  border: none;
  background: none;
  font-size: 16px;
  cursor: pointer;
  margin: 0 1px;  
  display: none; /* Initially hidden */
}

.navigation a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  margin-left: 10px;
}
/*header 2 start*/
.header_container{
    width: 100%;
    height: 100px;
    padding: 10px 40px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 20px;
}
.header_container > a, img{
    width: 60px;
}
.header_container > h1 {
    font-size: 34px;
}
/*header 2 end*/

/* nav start*/
nav{
    width: 100%;
    height: 40px;
    background-color: #2B2C2D;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 0;
}
ul{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: #fff;
    list-style: none;
}
/* nav end*/
/* hero start*/
.slider-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    border: 1px solid #ddd;
    background-color: #fff;
  }

  .slider-main {
    flex: 2;
    position: relative;
    overflow: hidden;
  }

  .slider-main img {
    width: 100%;
    height: 500px;
  }

  .slider-caption {
    width: 95%;  
    position: absolute;
    bottom: 10px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    border-radius: 4px;
  }

  .slider-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #ddd;
  }

  .slider-right-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
  }

  .slider-right-item:hover {
    background-color: #f1f1f1;
  }

  .slider-right-item img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 4px;
  }

  .slider-right-item.active {
    background-color: #000957;
    color: #fff;
  }

  .slider-right-item.active img {
    border: 2px solid #fff;
  }

  .slider-right-item-title {
    font-weight: bold;
  }

  .slider-right-item-date {
    font-size: 12px;
    color: #666;
  }

  .read-more {
    margin-left: auto;
    color: #007bff;
    text-decoration: none;
    font-size: 12px;
  }

  .read-more:hover {
    text-decoration: underline;
  }
/* hero end*/