.dfsp-container {
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  margin: 0;
  overflow: hidden;
}

.dfsp-container .hidden {
  display: none !important;
}

.dfsp-container h2 {
  margin: 5px 0px;
}

.dfsp-container p {
  margin: 5px 0px;
}

.dfsp-container .content-container {
  width: 50%;
  min-width: 500px;
  background-color: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.dfsp-container .centered {
  text-align: center;
}

.dfsp-container .loader-animation {
  position: relative;
  width: 120px;
  height: 120px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  animation: lspin 2s linear infinite;
  margin: 0 auto;
}

.dfsp-container .loader-text {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 16px;
  color: #333;
}

.dfsp-container .content {
  text-align: center;
}

@keyframes lspin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.dfsp-container .container {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  width: 400px;
}

.dfsp-container .question {
  margin-bottom: 20px;
}

.dfsp-container .stars {
  display: inline-block;
}

.dfsp-container .stars .star {
  font-size: 2em;
  color: #ccc;
  cursor: pointer;
}

.dfsp-container .stars .star.selected {
  color: #f39c12;
}

.dfsp-container .stars .star.hovered {
  color: #f39c12;
}

.dfsp-container textarea {
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  resize: none;
  width: calc(100% - 20px);
  box-sizing: border-box;
}

.dfsp-container button {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.dfsp-container button:hover {
  background-color: #2980b9;
}