* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.sidebar {
  background-color: #f7f7f7;
  padding: 1rem;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}
.sidebar__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #2c2a29;
}
.sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar__link {
  display: block;
  padding: 0.5rem 0.75rem;
  color: #4a4a4a;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.sidebar__link:hover {
  background-color: #f0f0f0;
}
.sidebar__link.active {
  background-color: #dba75e;
  color: #fff;
}

.hero {
  background-color: #fafafa;
  padding: 2rem 0;
  text-align: center;
}
.hero__inner {
  max-width: 800px;
  margin: 0 auto;
}
.hero__title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #2c2a29;
}
.hero__desc {
  font-size: 1rem;
  color: #4a4a4a;
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.results-table th,
.results-table td {
  padding: 0.75rem;
  border: 1px solid #e1e1e1;
  text-align: left;
}

.results-table thead {
  background-color: #f0f0f0;
}
.price-cell {
  white-space: nowrap;
  width: 100px;
}

.placeholder-icon {
  font-size: 1.5rem;
  color: #ccc;
}

.no-results {
  font-size: 1rem;
  color: #4a4a4a;
  text-align: center;
  padding: 2rem 0;
}

.view-button {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background-color: #dba75e;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: backgound-color .2s;
}

.view-button:hover {
  background-color: #b58b4a;
}