/* SaltBooks Geo-Location Banner Styles */

.geo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #0ea5e9;
  color: white;
  padding: 12px;
  text-align: center;
  z-index: 10000;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.geo-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.geo-banner-actions {
  display: flex;
  gap: 8px;
}

.geo-banner-btn {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-family: inherit;
}

.geo-banner-btn-primary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.geo-banner-btn-primary:hover {
  background: rgba(255, 255, 255, 0.3);
}

.geo-banner-btn-secondary {
  background: transparent;
  color: white;
}

.geo-banner-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.geo-banner-btn:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}
