/* Assessment Results Styles */
.score-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  transition: background-color 0.5s ease;
}

.score-inner {
  animation: fadeIn 1s ease-in-out;
}

.score-excellent {
  background-color: #28a745;
}

.score-good {
  background-color: #ffc107;
}

.score-ok {
  background-color: #fd7e14;
}

.score-weak {
  background-color: #dc3545;
}

.score-circle {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  transition: background-color 0.5s ease;
}

.score-circle::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top-color: var(--primary-blue);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.assessment-button {
  padding: 1rem 2.5rem;
  border: none;
  color: #fff;
  background-color: var(--primary-blue);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.assessment-button:hover {
  background-color: var(--secondary-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.score-circle {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  transition: background-color 0.5s ease;
}

.score-circle::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top-color: var(--primary-blue);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.score-weak {
  background-color: #dc3545;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
