.spinner-container {
  text-align: center;
}

.spinner {
  border: 6px solid rgba(0, 0, 0, 0.1);
  border-top: 6px solid #3498db; /* Change color as needed */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

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

.whatsapp {
  max-width: 80% !important; /* Maximum width is the width of its container */
  max-height: 100% !important; /* Maximum height is 200 pixels */
}