
/* Events Menu Styles */

.events-menu {
  position: relative;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #003e7e;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer;
}

.menu-toggle i {
  margin-right: 6px;
}

.menu-content {
  position: sticky;
  top: 20px;
  display: block;
}

.menu-label {
  font-weight: bold;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 6px;
  color: #003e7e;
}

.search-box,
.tag-filter,
.date-filter {
  margin-bottom: 20px;
}

#event-search {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

#tag-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-buttons button {
  background-color: #ecf0f4;
  color: #003e7e;
  border: none;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.tag-buttons button.active {
  background-color: #005fa9;
  color: #fff;
}

#date-select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }
  .menu-content {
    display: none;
  }
  .menu-content.open {
    display: block;
  }
}
