body .search-input-container {
  position: relative;
  width: 100%;
  max-width: 650px;
  min-width: 300px;
  display: flex;
  flex-Wrap: nowrap;
  margin: 30px auto auto;
  padding: 0 10px;
  align-items: stretch;
}
body .search-input-container label {
  position: absolute;
  left: 20px;
  height: 88%;
  align-items: center;
  display: flex;
}
body .search-input-container input {
  background: var(--input-background-color);
  color: var(--input-color);
  padding-left: 35px;
  font-size: 1.4rem;
  height: 38px;
  border-color: var(--input-border-color);
  flex-grow: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
body .search-input-container button {
  flex-shrink: 0;
  height: 38px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  font-weight: 500;
}
body .search-result-container {
  display: flex;
  justify-content: center;
  column-gap: 50px;
  flex-wrap: wrap;
}
body .search-result-container table {
  text-align: left;
}
body .search-result-container table thead th {
  max-width: initial;
}
body .search-result-container table tbody tr td {
  max-width: 200px;
}
body .search-result-container table tbody tr td.cell-number {
  text-align: right;
}
body .search-result-container table tbody tr td.cell-actions {
  text-align: center;
}
body .search-result-container table tbody tr td.cell-image img {
  width: 120px;
}
body .search-result-container table tbody tr td[onClick] {
  font-weight: bold;
  text-decoration: underline;
}
body .loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body .error-message {
  color: var(--failed);
  text-align: center;
  padding: 20px;
  font-weight: bold;
}
body .game-publisher-grid {
  transition: all 0.3s ease;
}
body .game-publisher-grid tr:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}
body .game-publisher-grid td:first-child {
  font-weight: bold;
}
body #searchResult {
  transition: opacity 0.3s ease;
}
body #publisherDetails {
  min-height: 200px;
}
body .publisher-games-popup {
  max-width: 1500px;
  min-width: 570px;
}
body #component-dd .formName {
  display: none;
}
body #component-ss {
  display: flex;
  justify-content: center;
  max-width: 1000px;
  margin: auto;
}
body .steam-data-tables-container {
  position: relative;
}
body .steam-data-tables-container h1 {
  text-align: center;
}
body .steam-data-tables-container table {
  table-layout: fixed;
  width: 100%;
}
body .steam-data-tables-container table tr td:first-child {
  text-align: left;
}
/* Quick fix for add/match games Detail button visual alignment */
#zz-table tr > .gridActionButton {
  margin-top: 15px;
}
/*# sourceMappingURL=add.css.map */