


.quiz__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 480px;
}

.quiz-header {
  
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 12px;
  justify-items: center;
  width: 100%;
  padding-top: 12px;
}

.quiz-back-btn {
  grid-column: 1;
  grid-row: 1;
}

.header__logo {
  grid-column: 2;
  grid-row: 1;
}

.quiz-progress {
  grid-column: 1 / 3;
  grid-row: 2;
  width: 100%;
}

.header__logo img {
  display: block;
}

.quiz-progress-bar {
  width: 100%;
  height: 4px;
  border-radius: 1000px;
  background: #eee;
  overflow: hidden;
}

.quiz-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #fdb948 0%, #f5a623 100%);
  border-radius: 4px;
  width: 0%;
  transition: width 0.5s ease-in-out;
}


.quiz-back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.quiz-back-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

