/* FILTER SECTION */
.events-filter {
    padding: 20px 0;
    background: #050038;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
  }
  #events-filter-form {
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: end;
      color: white;
  }
  .events-filter .filter-group { 
      margin-bottom: 15px; 
  }
  .events-filter label { 
      margin-right: 10px; font-weight: bold; 
  }
  .events-filter input,
  .events-filter select { 
      padding: 5px 10px; 
      font-size: 14px; 
  }
  .events-filter button { 
      padding: 8px 16px; 
      font-size: 14px; 
  }
  
  /* EVENTS LIST SECTION */
  .events-list-section {
    padding: 40px 0;
    background-color: #050038;
    color: white;
    margin-top: -1px;
  }
  .events-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
  }
  .event-item {
      background-color: #050038;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3sease;
      width: 93%;
      margin: auto;
  }
  .event-item:hover { 
      transform: translateY(-5px); 
  }

  .event-item-main-info { 
      padding: 20px; 
      background: linear-gradient(90deg, rgba(105, 102, 136, 0.2) 0%, rgba(5, 0, 56, 0.2) 100%); 
      position: relative;
  }
    .event-logo {
        position: absolute;
        top: 10px;
        right: 32px;
        width: 65px;
        height: auto;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .event-logo img {
        max-width: 100%;
        height: auto;
    }

  .event-item-in-person { 
      display: flex; 
      align-items: center; 
      gap: 10px; 
      margin-bottom: 10px; 
  }
  .event-item-in-person img { 
      width: 24px; 
      height: 24px; 
  }
  .mono-small {     
      margin-bottom: 10px;
      font-family: Primal, sans-serif;
      font-weight: 600;
      font-size: 18px;
      color: #6b66c4;
      line-height: normal;
      text-transform: uppercase; 
  }
  .link-no-underline { 
      text-decoration: none; 
      color: inherit; 
  }
  .event-index-item-h { 
      font-size: 22px; 
      margin: 0 0 10px;
      letter-spacing: normal;
  }
  .event-item-desc { 
      font-size: 18px; 
      color: white;
  }
  .event-item-meta { 
      display: flex; 
      justify-content: space-between; 
      align-items: center; 
      padding: 20px; background: 
      linear-gradient(90deg, rgba(105, 102, 136, 0.2) 0%, rgba(5, 0, 56, 0.2) 100%); 
  }
  .event-date-info { 
      font-size: 16px; 
      color: white; 
  }
  .event-info-box { 
      margin-right: 10px; 
      font-weight: 600;
  }
  .event-join-link-c { 
      display: flex; 
      align-items: center; 
  }
  .event-join-link { 
      display: flex; 
      align-items: center; 
      text-decoration: none;
  }
  .btn-arrow { 
      margin-left: 5px; 
      align-items: center; 
  }
  .btn.btn-primary.event-join-button {
    display: flex;
    align-items: center;
  }
  
  
  .type-of-event {
    display: block;
    font-size: 16px;
    color: #fff;
    text-align: center;
    background: linear-gradient(90deg, rgba(105, 102, 136, 0.2) 0%, rgba(5, 0, 56, 0.2) 100%);
    padding: 0;       /* Remove padding */
  }

  /* Load More Button */
.load-more-container { 
    margin-top: 20px;     
    text-align: center;
    margin-top: 60px;
    padding-bottom: 6%; }

#load-more-button { 
    padding: 10px 20px; 
    font-size: 16px; 
    cursor: pointer; 
}

/* Mobile-friendly styles */
@media screen and (max-width: 768px) {
    #events-filter-form {
        flex-direction: column; /* Stack elements vertically */
        justify-content: center; /* Center elements */
        align-items: center; /* Align elements to center */
        text-align: center; /* Center text */
    }
}