/*
  CB-197 Estonian Company Search (shared styles)

  Keep styles lightweight and compatible with existing B2B-v3 theme.
  The component uses data attributes + .est-company-search__option classes.
*/

.company-search {
  position: relative;
}

.company-search [data-est-company-search-status] {
  font-size: 0.85rem;
  margin-top: 0.4rem;
  min-height: 1.2em;
  color: var(--color-text-teritary, rgba(0, 0, 0, 0.65));
}

.company-search [data-est-company-search-results] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: block;
  margin-top: 0;
  background: var(--color-bg, #fff);
  border: 1px solid var(--color-border, rgba(0, 0, 0, 0.15));
  border-radius: 10px;
  max-height: 260px;
  overflow: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.company-search [data-est-company-search-results][hidden] {
  display: none !important;
}

.company-search .est-company-search__option {
  padding: 10px 12px;
  cursor: pointer;
  user-select: none;
}

.company-search .est-company-search__option:not(:last-child) {
  border-bottom: 1px solid var(--color-border, rgba(0, 0, 0, 0.08));
}

.company-search .est-company-search__option:hover,
.company-search .est-company-search__option.is-active {
  background: var(--color-bg-secondary, rgba(0, 0, 0, 0.04));
}

/* Mobile: increase touch area slightly */
@media (max-width: 700px) {
  .company-search .est-company-search__option {
    padding: 12px 14px;
  }
}


