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

.container {
  text-align: center;
  padding: 20px;
  max-width: 400px;
  width: 100%;
  background: #1E1E1E;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

h1{
  color: #1DB954;
}

.search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.search-box input {
  flex: 1;
}

.search-box button {
  flex-shrink: 0;
  background: #1DB954;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.search-box button:hover {
  background: #17a34a;
}

input, select, button {
  margin: 10px 0;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  background: #333;
  color: var(--text-color);
}

input {
  background: #333;
  color: #fff;
}

button {
  background: #4caf50;
  color: #fff;
  cursor: pointer;
}

button:hover {
  background: #45a049;
}

.error-message {
  color: #ff5252;
  font-size: 14px;
  display: none;
}

.result-container {
  display: none;
  flex-direction: column;
}

.result-container input {
  display: flex;
  flex-direction: column;
}

.result-container .button-container {
  display: flex;
  justify-content: space-between;
  gap: 10px; 
}

.result-container button {
  width: 50%;
  box-sizing: border-box; 
}

.github-repo {
  margin-top: 20px;
}

.github-repo a {
  color: #4caf50;
  text-decoration: none;
  font-weight: bold;
}

.github-repo a:hover {
  text-decoration: underline;
}

.copied-message {
  display: none;
  background: #4caf50;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  right: 20px;
  animation: fadeInOut 2s forwards;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
