#header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 2rem;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    /* table-layout: fixed; */
    color: #141a39;
    cursor: default;
  }

  tr {
    transition: all 0.2s ease-in-out;
    border-radius: 0.2rem;
  }

  tr:not(:first-child):hover {
    background-color: #fff;
    /* transform: scale(1.1);
    -webkit-box-shadow: 0px 5px 15px 8px #e4e7fb;
    box-shadow: 0px 5px 15px 8px #e4e7fb; */
    color: #005aa5;
  }

  tr:nth-child(even) {
    background-color: #f9f9f9;
  }

  tr:nth-child(1):hover {
    background-color: #fff;
    /* transform: scale(1.1);
    -webkit-box-shadow: 0px 5px 15px 8px #e4e7fb;
    box-shadow: 0px 5px 15px 8px #e4e7fb; */
  }

  /* tbody tr:nth-child(1) {
    background-color: #d9d9d9;
    color: #005aa5;
  }

  tbody tr:nth-child(2) {
    background-color: #c0c0c0;
    color: #005aa5;
  }

  tbody tr:nth-child(3) {
    background-color: #f0f0f0;
    color: #005aa5;
  } */

  td:nth-child(1) {
    font-size: 1rem;
    color: #141a39;
  }

  td:nth-child(2) {
    font-size: 1rem;
    color: #141a39;
  }

  td:nth-child(4) {
    font-size: 1rem;
    color: #141a39;
  }

  .modaltr {
    /* height: 3rem; */
    /* font-family: "Rubik", sans-serif; */
    /* font-size: .8rem; */
    /* padding: 1rem 1rem; */
    /* margin-top: 10px; */
    position: relative;
    text-align: center;
  }
  
  .leaderboardtr, #myTable {
    height: 3rem;
    font-family: "Rubik", sans-serif;
    font-size: .8rem;
    padding: 1rem 1rem;
    position: relative;
    text-align: center;
  }

  /* ---------------------------------------
  Inputs for Category, Gender, Search
*/-----------------------------------------
.filter-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-label {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

.filter-select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
    outline: none;
}

.filter-select:hover, .filter-select:focus {
    border-color: #007bff;
    background-color: #fff;
}

.filter-container select {
    cursor: pointer;
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--secondary-color);
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-top: 15px;
    padding-bottom: 10px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 5px;
    padding: 0;
  }

  .hero-section {
    position: relative;
    top: 82px;
    margin-bottom: 82px;
  }

  .events-listing-section {
    margin-bottom: 50px;
  }

  .events-detail-section .custom-block-info {
    padding: 40px;
  }

  .events-detail-info {
    padding: 35px 25px;
  }

  .contact-info-item {
    width: 60%;
  }

  .events-detail-section .contact-info-item {
    width: 70%;
  }

  .section-bg-image {
    margin-bottom: 0;
  }

  .section-bg-image-block {
    padding: 30px;
  }

  .site-footer {
    padding-top: 20px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 480px) {
  .navbar-brand {
    font-size: var(--p-font-size);
  }

  .navbar-brand-icon {
    width: 30px;
    height: 30px;
  }

  .navbar-brand-icon::after {
    top: 5px;
  }

  .section-bg-image-block {
    padding: 30px;
  }

  .contact-info-item {
    width: 72%;
  }

}

@media screen and (max-width: 360px) {
  .custom-btn {
    font-size: 12px;
    padding: 4px 12px;
  }
}