/**
 * Search Results Table Styles
 * Shared styles for all component type tables
 */

.results-list {
  flex-direction: column;
}

.table-header {
  display: flex;
  border-bottom: 1px solid #a4abb1;
}

.table-header-cell {
  flex: 1;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #121213;
}

.table-header-cell.arrow-col {
  flex: 0 0 56px;
}

.table-row {
  display: flex;
  align-items: center;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.table-row:nth-child(even) {
  background: #e1e1e1;
}

.table-row:hover {
  background: #f5f5f5;
  text-decoration: none;
}

.table-cell {
  flex: 1;
  padding: 8px 16px;
  font-size: 14px;
  color: #121213;
  min-height: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.table-cell.arrow-col {
  flex: 0 0 56px;
  justify-content: center;
}

.table-cell.arrow-col i {
  color: #121213;
}

/* Tag */
.eol-tag,
.citrix-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border: 1px solid #fa5944;
  border-radius: 4px;
  font-family: 'Public Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ae3513;
  white-space: nowrap;
  line-height: normal;
}

.citrix-tag {
  border-color: #005dd0;
  color: #005dd0;
}

/* Version note icon (hover tooltip) */
.version-note-icon {
  position: relative;
  display: inline-flex;
  margin-left: 2px;
  cursor: help;
}
