/**
 * World ID WordPress Plugin - Public Styles
 */

.world-id-container {
  margin: 20px 0;
  text-align: center;
}

.world-id-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3d4043;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  margin: 0 auto;
}

.world-id-button:hover {
  background-color: #2a2d30;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.world-id-button:active {
  transform: translateY(1px);
}

.world-id-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z" fill="white"/><path d="M17.9212 12.522C17.9212 15.5185 15.4977 17.942 12.5012 17.942C9.50466 17.942 7.08115 15.5185 7.08115 12.522C7.08115 9.52551 9.50466 7.10199 12.5012 7.10199C15.4977 7.10199 17.9212 9.52551 17.9212 12.522Z" fill="%233D4043"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.world-id-text {
  display: inline-block;
}

.world-id-status {
  margin-top: 10px;
  font-size: 14px;
  min-height: 20px;
}

.world-id-status-loading {
  color: #666;
}

.world-id-status-success {
  color: #4caf50;
}

.world-id-status-error {
  color: #f44336;
}

.world-id-error {
  color: #f44336;
  padding: 10px;
  border: 1px solid #f44336;
  border-radius: 4px;
  margin: 10px 0;
  background-color: rgba(244, 67, 54, 0.1);
  text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
  .world-id-button {
    width: 100%;
    max-width: 300px;
  }
}

