body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f3f3f3;
}

.loader {
  border: 5px solid #3498db;
  border-top: 5px solid #FAC407;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
  margin-bottom: 20px;
}

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

.text {
  text-align: center;
  color: #333;
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

a.toolplate-link {
  color: #FAC407;
  text-decoration: none;
}

a.toolplate-link:hover {
  text-decoration: underline;
}

a.tst-link {
  color: #00B7FF;
  text-decoration: none;
}

a.tst-link:hover {
  text-decoration: underline;
}
