.lcsd_logo_x1 {
    height: 58px;
}

.hr-text,.normal-hr {
  border: 0;
  line-height: 2.5em;
  position: relative;
  text-align: center;
  font-size: 1em;
  margin: 30px 15px;
  border-top: 0px;
}

.hr-text::before,.normal-hr::before  {
    content: "";
    background: linear-gradient(to right, transparent, black, transparent);
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 3px;
}

.hr-text::after {
    content: attr(data-content);
    position: relative;
    padding: 0 7px;
    line-height: 1.5em;
    color: black;
	background-color: white;
}

.normal-hr::after {
    content: attr(data-content);
    position: relative;
    padding: 0 7px;
    line-height: 1.5em;
    color: black;
}

.video-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  padding: 10px;
}

.video-item {
  width: 150px;
  height: 245px;
  box-sizing: border-box;
  overflow: hidden;
}

.video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px; /* Optional: rounded corners */
}

.video-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.mascot-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.mascot-item {
	width: 33%; /* 3 images in a row */
	box-sizing: border-box;
	text-align: center; /* Center-align text */
	margin-bottom: 12px;
}

.mascot-item img {
	display: block;
	max-height: 150px;
	margin: 5px auto;
}

@media screen and (max-width: 480px) {
  .mascot-item {
      width: 50%; /* 2 images in a row */
  }

}


 .sponsor-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .sponsor-item {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px; /* consistent container height */
    padding: 10px;
  }

  .sponsor-item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain; /* maintains aspect ratio without distortion */
  }

.active > .menu_lv3, .menu_lv2 > li:hover .menu_lv3 {
  width: auto;
}

.result_table td, .result_table th {
  padding: 6px 6px 6px 6px; 
  border: 1px solid black !important;
  text-align: center;
}

.result_table_original td, .result_table_original th {
  padding: 6px 6px 6px 6px; 
}

.competiton_date_tables th, .competiton_date_tables td {
  padding: 4px 5px 4px 9px;
}

/* Style the button that is used to open and close the collapsible content */
    .non-collapsible, .collapsible {
      background-color: #F7F7F7;
      color: #c24e00;
      padding: 8px 10px 8px 18px;
      border: none;
      text-align: left;
      font-size: 1em;
      width: 100%;
      margin-bottom: 5px;
    }
    .collapsible {
      cursor: pointer;
    }
    .collapsible + .content {
      display: none;
      overflow: hidden;
      margin-bottom: 10px;
    }
    .collapsible + .content table {
      width: 100%;
      border-collapse: collapse;
    }
	.collapsible.sub-header::after {
	  content: '\02795'; /* Unicode character for "plus" sign (+) */
	  font-size: 13px;
	  color: white;
	  float: right;
	  margin-right: 30px;
	}
	.collapsible.active.sub-header::after {
		content: "\2796"; /* Unicode character for "minus" sign (-) */
	}
