@import 'UI/variables';

#jfrwg-app {
  font-family: Circular, "system-ui", Helvetica, -apple-system, "Segoe UI", Roboto, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.jfrwg-loader-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  gap: 16px;

  .jfrwg-loader {
    width: 40px;
    height: 40px;
    border: 3px solid #e0e0e0;
    border-top-color: #ff6100;
    border-radius: 50%;
    animation: jfrwg-spin 0.8s linear infinite;
  }
}

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

.jfrwg-first-step {
  max-width: 480px;
  margin: 48px auto;
  padding: 32px 24px;
  text-align: center;

  h2 {
    font-size: 24px;
    margin: 0 0 16px;
    line-height: 1.4;
  }

  p {
    color: #666;
    margin: 0 0 24px;
    line-height: 1.6;
  }

  .jfrwg-connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ff6100;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;

    &:hover {
      background: #e55300;
      color: #fff;
    }
  }
}

.jfrwg-connected {
  max-width: 480px;
  margin: 48px auto;
  padding: 32px 24px;
  text-align: center;
  background: #f0f9ff;
  border-radius: 8px;

  h3 {
    margin: 0 0 8px;
    font-size: 18px;
  }

  p {
    margin: 0 0 16px;
    color: #666;
  }

  .jfrwg-logout-btn {
    padding: 8px 16px;
    background: transparent;
    color: #666;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;

    &:hover {
      background: #f5f5f5;
    }
  }
}
