* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:host {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 16px;

  background: linear-gradient(to right, #eff6ff, #f0fdf4);
}

h3 {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: #001E57;
  font-size: 16px;
  font-weight: 500;
}

h3 svg {
  width: 20px;
  height: 20px;
}

p {
  font-size: 14px;
}

.recently-viewed-container {
  background-color: white;
  padding: 8px 12px;
  border-radius: 0.5rem;
}

.recently-viewed-container span {
  font-size: 12px;
  color: var(--text-secondary-color);
}

ul,
li {
  display: flex;
  list-style: none;
  gap: 0.625rem;
}

li {
  align-items: center;
  font-size: 14px;
  gap: 0.3rem;
  color: var(--primary-black);
}

li svg {
  width: 12px;
  height: 12px;
  stroke: #9ca3af;
}

button {
  width: 100%;
  background-color: #001E57;
  color: white;
  padding: 8px 0;
  border: none;
  border-radius: 8px;
  font-size: 14px;
}
