* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:host {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.welcome-message {
  background-color: var(--card-background-color);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.welcome-message p {
  margin: 0;
  line-height: 1.5;
}

.options-container {
  background-color: white;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2px;
}

.options-title {
  margin: 0 0 12px 0;
  color: #666;
  font-size: 0.875rem;
}

.options-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 0px;
  font-size: 0.875rem;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.option-disabled {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 0px;
  font-size: 0.875rem;
  border-radius: 6px;
  transition: background-color 0.2s;
  cursor: not-allowed;
}

.option-text {
  color: #001e57;
}

.option-disabled:hover {
  background-color: #f5f5f5;
}

.option span:nth-child(1) {
  background-color: #eff6ff;
  width: 36px;
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
}

.option svg {
  color: #001e57;
}

.option:hover {
  background-color: #f5f5f5;
}

.icon-wrapper {
  width: 36px;
  height: 36px;
  background-color: #f0f5ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper svg {
  width: 16px;
  height: 16px;
  color: #001e5790;
}

.option-text-disabled {
  color: #828388;
}

.option-disabled svg {
  color: #828388;
}

div[data-active='inactive'] .icon-wrapper {
  background-color: #f5f5f5;
}
