#yt-downloader-box {
	text-align: center;
}
#yt-channel-input {
  width: 85%;
  padding: 12px 15px;
  font-size: 16px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

#yt-downloader-box button {
  padding: 12px 20px;
  background: #e50914;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

#yt-downloader-box button:hover {
  background: #c90710;
}

#yt-loading {
  margin-top: 20px;
}

.spinner {
  width: 35px;
  height: 35px;
  border: 5px solid #ccc;
  border-top: 5px solid #e50914;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#yt-profile-result {
  margin-top: 25px;
}

#yt-profile-result .profile-pic {
  max-width: 200px;
  border-radius: 50%;
  margin: 20px auto;
  display: block;
}

.download-btn {
  display: inline-block;
  margin: 8px;
  text-decoration: none;
  color: white;
  background: #007bff;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
}

.download-btn:hover {
  background: #0056b3;
}
