/**
 * @file
 * Styles for the Block Load Content module.
 */

.block-load-content {
  margin: 1em 0;
}

.block-load-content__wrapper {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1em;
  background-color: #f9f9f9;
}

.block-load-content__content {
  /* Inherit styles from the theme */
}

.block-load-content__empty {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 2em;
}

/* Autocomplete styling */
.ui-autocomplete {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #ccc;
  background: #fff;
  z-index: 1000;
}

.ui-autocomplete .ui-menu-item {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.ui-autocomplete .ui-menu-item:hover {
  background-color: #f0f0f0;
}

.ui-autocomplete .ui-menu-item:last-child {
  border-bottom: none;
}
