.scott-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.scott-popup-inner {
  background: #fff;
  padding: 30px;
  max-width: 500px;
  border-radius: 10px;
  text-align: center;
  max-height: 600px;
  overflow: auto;
}

.scott-popup-button {
  background: #65bcff;
  color: #222;
  padding: 11px 40px;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
}

.scott-popup-button:hover {
  background: #000;
  color: #fff;
}
.scott-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #0073aa;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  z-index: 10;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
