
.uiaa-am { font-family: inherit; }
.uiaa-am__layout { position: relative; display: grid; grid-template-columns: 1fr; gap: 0; }
.uiaa-am__map { width: 100%; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; }
.uiaa-am__sidebar {
  position: absolute;
  top: 12px;
  right: 12px;
  width: min(380px, calc(100% - 24px));
  max-height: calc(100% - 24px);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  overflow: hidden;
  display: none;
}
.uiaa-am__sidebar.is-open { display: block; }
.uiaa-am__sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-bottom: 1px solid #e5e7eb;
}
.uiaa-am__close {
  background: transparent; border: 0; font-size: 20px; line-height: 1; cursor: pointer;
}
.uiaa-am__sidebar-body { padding: 12px; overflow: auto; max-height: calc(100% - 44px); }
.uiaa-am__btn {
  display: inline-block; padding: 8px 10px; border: 1px solid #111827; border-radius: 10px;
  text-decoration: none;
}
.uiaa-am__controls {
  margin-top: 12px;
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: flex-end;
}
.uiaa-am__controls label { display: grid; gap: 4px; font-size: 13px; }
.uiaa-am__controls select, .uiaa-am__controls input {
  padding: 8px 10px; border: 1px solid #d1d5db; border-radius: 10px; min-width: 160px;
}
.uiaa-am__search input { min-width: 260px; }

.uiaa-am__tablewrap { margin-top: 12px; overflow: auto; border: 1px solid #e5e7eb; border-radius: 12px; }
.uiaa-am__table { width: 100%; border-collapse: collapse; background: #fff; }
.uiaa-am__table th, .uiaa-am__table td { padding: 10px 12px; border-bottom: 1px solid #f3f4f6; vertical-align: top; }
.uiaa-am__table thead th { position: sticky; top: 0; background: #f9fafb; z-index: 1; text-align: left; }
.uiaa-am__table tbody tr { cursor: pointer; }
.uiaa-am__table tbody tr:hover { background: #f9fafb; }
.uiaa-am__table tbody tr.is-active { outline: 2px solid #2563eb; outline-offset: -2px; }
.uiaa-am__meta { margin-top: 4px; font-size: 12px; opacity: 0.8; }
.uiaa-am__meta span { font-weight: 600; }
