/* modal backdrop + centering */
.modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
  z-index: 50;
}
.modal.show {
  display: flex;
}

/* modal inner */
.modal-content {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  width: 90%;
  max-width: 400px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: .5rem;
  right: .75rem;
  font-size: 1.5rem;
  cursor: pointer;
}

/* tag selected state */
.tag.selected {
    background-color: #2563eb; /* Tailwind blue-600 */
    color: white;
    font-weight: 500;
    }
.tag.clear {
    display: none;
    }
@media (max-width: 767px) {
    .menu {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    .menu.show {
        display: flex;
    }
}

