.pk-burnout-test {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(76, 175, 80, 0.05);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pk-bt-progress-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.pk-bt-progress {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.pk-bt-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #4CAF50, #45a049);
  border-radius: 4px;
  transition: width 0.3s ease;
  width: 0%;
}

.pk-bt-progress-label {
  font-size: 14px;
  font-weight: 600;
  color: #4CAF50;
  min-width: 40px;
  text-align: right;
}

.pk-bt-question {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

.pk-bt-question-text {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

.pk-bt-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pk-bt-option {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  color: #333;
}

.pk-bt-option:hover {
  background: #e8f5e8;
  border-color: #4CAF50;
  transform: translateY(-1px);
}

.pk-bt-option.selected {
  background: #4CAF50;
  border-color: #4CAF50;
  color: white;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.pk-bt-option input[type="radio"] {
  margin-right: 12px;
  transform: scale(1.2);
}

.pk-bt-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 15px;
}

.pk-bt-button {
  flex: 1;
  padding: 15px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.pk-bt-button--prev {
  background: #6c757d;
  color: white;
}

.pk-bt-button--prev:hover {
  background: #5a6268;
  transform: translateY(-1px);
}

.pk-bt-button--next {
  background: #4CAF50;
  color: white;
}

.pk-bt-button--next:hover {
  background: #45a049;
  transform: translateY(-1px);
}

.pk-bt-button--next:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.pk-bt-button--submit {
  background: #007bff;
  color: white;
}

.pk-bt-button--submit:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

.pk-bt-result {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pk-bt-result-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.pk-bt-result-score {
  font-size: 48px;
  font-weight: 700;
  color: #4CAF50;
  margin-bottom: 20px;
}

.pk-bt-result-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.pk-bt-result-button {
  display: inline-block;
  padding: 15px 30px;
  background: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pk-bt-result-button:hover {
  background: #45a049;
  transform: translateY(-1px);
  text-decoration: none;
  color: white;
}

/* Адаптивность */
@media (max-width: 768px) {
  .pk-burnout-test {
    padding: 20px;
    margin: 10px;
  }
  
  .pk-bt-question {
    padding: 20px;
  }
  
  .pk-bt-question-text {
    font-size: 16px;
  }
  
  .pk-bt-option {
    padding: 12px 15px;
    font-size: 15px;
  }
  
  .pk-bt-buttons {
    flex-direction: column;
  }
  
  .pk-bt-button {
    padding: 12px 20px;
    font-size: 15px;
  }
  
  .pk-bt-result-score {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .pk-burnout-test {
    padding: 15px;
    margin: 5px;
  }
  
  .pk-bt-question {
    padding: 15px;
  }
  
  .pk-bt-question-text {
    font-size: 15px;
  }
  
  .pk-bt-option {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .pk-bt-result-score {
    font-size: 32px;
  }
}
