/* Typeahead Atenea Steel */
.atenea-ta {
  position: relative;
  width: 100%;
}

.atenea-ta-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 40;
  max-height: 220px;
  overflow: auto;
  background: linear-gradient(180deg, #1a2330 0%, #141c28 100%);
  border: 1px solid #3a4a5c;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  padding: 4px;
}

.atenea-ta-menu.hidden {
  display: none;
}

.atenea-ta-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 4px;
  color: #c8d0e0;
  padding: 8px 10px;
  cursor: pointer;
  font: inherit;
}

.atenea-ta-item:hover,
.atenea-ta-item--on {
  background: rgba(79, 195, 247, 0.12);
}

.atenea-ta-nom {
  font-size: 13px;
  color: #e2e8f0;
}

.atenea-ta-sub {
  font-size: 11px;
  color: #7f8ea3;
}

.atenea-ta-ask-overlay {
  z-index: 9500;
}

.atenea-ta-ask {
  width: min(360px, 88vw);
  padding: 20px 16px 12px;
  background: linear-gradient(180deg, #1a2330 0%, #141c28 100%);
  border: 1px solid #3a4a5c;
  border-radius: 8px;
  color: #a8b8c8;
}

.atenea-ta-ask h2 {
  margin: 0 0 8px;
  font-size: 15px;
  color: #c8d0e0;
}

.atenea-ta-ask-body {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.4;
}

.atenea-ta-ask-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
