.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-header-left {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin: 5px 0 0 5px;
}
.app-header-left img {
  height: 35px;
  width: 35px;
  border-radius: 50%;
}

main {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-large);
}

/*================================
container
==================================*/

.container {
  width: min(100%-2rem, 1100px);
  margin-inline: 1.4rem;
}

.icon-button {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.app-header-right {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin-right: 5px;
}

/*FAVORITE PLACE STYLES*/
.favorites-section {
  margin: 20px 0;
}

.favorites-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.favorites-header h3 {
  color: white;
  font-size: 18px;
}

#add-favorite-btn {
  background: var(--secondary-color);
  /*rgba(255, 255, 255, 0.1);*/
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.favorites-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.favorite-chip {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
}
