/* Pull to Refresh Styles */
.pull-to-refresh-indicator {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 1000;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.pull-to-refresh-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: none;
}

.pull-to-refresh-indicator.refreshing .pull-to-refresh-spinner {
  display: block;
}

.pull-to-refresh-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-family: serif;
  white-space: nowrap;
}

.pull-to-refresh-indicator.ready .pull-to-refresh-text {
  color: rgba(255, 255, 255, 0.9);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
