.body-class {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
  padding: 5px 20px 20px 20px;
}

.loading_container {
  margin-top: 30px;
  display: flex !important;
  justify-content: center;
  height: 100vh; /* This will make the container take up the full height of the viewport */
}

.signature-pad {
  width: 100%;
  height: 230px;
  border: 1px solid #ccc;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  background-color: #007bff;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

.fail_container {
  padding: 5%;
  text-align: center;
}

.fail_container > h2 {
  color: red;
}

.clear-button {
  background-color: #dc3545;
}

.done-button {
  background-color: #28a745;
}

.shown {
  display: block;
}

.hidden {
  display: none !important;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}