/* Modal component styles */
.modal.is-active {
  display: flex;
}

.modal-content .box {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modal-content .title:not(.is-spaced) {
  margin-bottom: 1.5rem;
  color: #374151;
}

.modal-background {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Category selection modal specific styles */
#category-modal .category-grid {
  margin-bottom: 1rem;
}

#category-modal .field.is-grouped {
  justify-content: space-between;
  align-items: center;
}

#category-modal .field.is-grouped .control:not(:last-child) {
  margin-right: 0.75rem;
}

/* Hidden forms for category assignment */
#category-form[style*="display: none"],
#clear-form[style*="display: none"] {
  display: none !important;
}