.fallback-container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  min-width: 200px;
  min-height: 200px;
  z-index: 999999;
  display: none;
}

.fallback-container.visible {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

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

.fallback-container .ghost-button {
  background-color: transparent;
  /* Ant Design primary color */
  color: #1890ff;
  /* Semi-transparent border */
  border: 1px solid rgba(24, 144, 255, 0.5);
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 24px;
  font-family: inherit;
  display: flex;
  align-items: center;
  line-height: 1;
}

.fallback-container .ghost-button:hover {
  /* Semi-transparent background on hover */
  background-color: rgba(24, 144, 255, 0.1);
  /* Solid border on hover */
  border: 1px solid #1890ff;
}

.fallback-container .ghost-button .icon {
  width: 16px;
  margin-right: 4px;
}

.fallback-container .result-subtitle {
  color: #00000073;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  margin-top: 24px;
}

.global-loading {
  display: none;
  overflow: hidden;
  background: rgba(255, 255, 255, 0);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.global-loading.visible {
  display: flex;
  justify-content: center;
  align-items: center;
}

.global-loading img {
  width: 200px;
}
