.type-container {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.6rem;
}

.type-item {
  display: flex;
  padding: 2rem;
  width: 100%;
  background-color: #eef1ef;
  border-radius: 5px;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.type-description {
  font-size: 1.8rem;
}

.loading-type-spinner {
  width: 32px;
  height: 32px;
  border: 4px solid #eef1ef;
  border-top: 4px solid #ff6f61;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 3.2rem auto;
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.loading-type-spinner.show {
  display: block;
  opacity: 1;
}
