* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #121212;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap: 20px;
}

.container {
  width: 300px;
  padding: 20px;
  background-color: #1e1e1e;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

input,
select,
button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

select {
  background-color: #2a2a2a;
  color: #ffffff;
}

button {
  background-color: #ffffff;
  color: #000000;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #b0b0b0;
}

.result-container {
  width: 100%;
  margin-top: 15px;
}

.repo-card {
  background-color: #2a2a2a;
  padding: 15px;
  border-radius: 8px;
  text-align: left;
}

.repo-card h3 a {
  color: #314bde;
  text-decoration: none;
  transition: color 0.3s ease;
}

.repo-card h3 a:hover {
  color: #1e88e5;
}

.repo-card p {
  color: #bdbdbd;
  font-size: 14px;
  margin-top: 5px;
}

.loading {
  color: #1e88e5;
}

.error {
  color: #e53935;
}

@media screen and (max-width: 375px) {
  .container {
    width: 90%;
  }
}