/* Styles for Exhibitor List front‑end */
.exhibitor-list-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 20px 0;
  max-width: 800px;
}

.exhibitor-search {
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.exhibitor-alphabet {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  justify-content: center;
}

.exhibitor-alphabet a {
  padding: 4px 8px;
  text-decoration: none;
  color: #0077cc;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: bold;
  cursor: pointer;
}

.exhibitor-alphabet a:hover {
  background-color: #eaf4ff;
  border-color: #0077cc;
}

.exhibitor-table {
  width: 100%;
  border-collapse: collapse;
}

.exhibitor-table th,
.exhibitor-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
}

.exhibitor-table th {
  background-color: #f0f0f0;
  text-align: left;
}

.exhibitor-table tr:hover {
  background-color: #f9f9f9;
}

/* Make each row clickable to highlight the booth on the map */
.exhibitor-table tr {
  cursor: pointer;
}

.exhibitor-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-right: 10px;
}

.booth-link {
  color: #0077cc;
  text-decoration: underline;
  cursor: pointer;
}

/* Highlight style applied to the matching booth element on the map */
.highlight-exhibitor-booth {
  outline: 3px solid #ff6600 !important;
  background-color: rgba(255, 165, 0, 0.3) !important;
  transition: all 0.3s ease;
}