body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  background-color: #1e1e1e;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  max-width: 500px;
  width: 90%;
}

h1 {
  color: #1DA1F2;
}

p {
  color: #888;
  margin-bottom: 30px;
}

#download-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#tweet-url {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #333;
  background-color: #252525;
  color: #e0e0e0;
  font-size: 16px;
  box-sizing: border-box; /* Important for padding */
}

button {
  padding: 12px;
  border-radius: 5px;
  border: none;
  background-color: #1DA1F2;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0c85d9;
}

#result-area a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #228B22;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

#result-area a:hover {
  background-color: #1a681a;
}

#result-area .error {
  color: #ff4d4d;
  margin-top: 20px;
}

.hidden {
  display: none;
}

#loading-indicator {
  margin-top: 20px;
  color: #888;
}
