/* Dark-mode modern design */

body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

h1, h2, h3 {
  color: #f0f0f0;
  text-align: center;
}

p {
  line-height: 1.6;
}

textarea {
  width: 100%;
  background-color: #2c2c2c;
  border: 1px solid #333;
  border-radius: 4px;
  color: #e0e0e0;
  padding: 10px;
  font-size: 1em;
  resize: vertical;
}

input[type="text"] {
  width: 100%;
  padding: 8px;
  font-size: 1em;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: #2c2c2c;
  color: #e0e0e0;
}

button {
  background-color: #3a3a3a;
  color: #e0e0e0;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
}

button:hover {
  background-color: #555;
}

table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #444;
  padding: 10px;
  text-align: left;
}

th {
  background-color: #333;
}

a {
  color: #1e90ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Progress bar styling */
#progressBarContainer {
  width: 100%;
  background-color: #333;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 10px;
}

#progressBar {
  height: 20px;
  width: 0%;
  background-color: #1e90ff;
  text-align: center;
  color: #fff;
  line-height: 20px;
  transition: width 0.3s ease;
}
