body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 90%;
  max-width: 600px;
  overflow-y: auto;
  max-height: 95vh;
}

input[type="text"] {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  padding: 0.5rem 1rem;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.user-info {
  margin-top: 1rem;
}

.user-info img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.user-info p,
.user-info a {
  margin: 0.25rem 0;
}

.repo-list {
  list-style: none;
  padding: 0;
}

.repo {
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: #f9f9f9;
  border-left: 4px solid #007bff;
  border-radius: 5px;
}

.repo p {
  margin: 0.2rem 0;
  font-size: 0.9rem;
}

.repo span {
  font-size: 0.8rem;
  color: #555;
}
