/* styles/style.css */
body {
  font-family: 'Tajawal', sans-serif;
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  color: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
}

.container {
  max-width: 400px;
  margin: auto;
  padding: 20px;
}

input, textarea, button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 10px;
}

button {
  background-color: #4CAF50;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

nav a {
  display: block;
  margin: 10px 0;
  color: white;
  text-decoration: none;
}

#progress-bar-container {
  width: 100%;
  height: 25px;
  background: #ccc;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 20px;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background: #00ff99;
}