/* public/style.css */
body {
  background: #0f1530;
  color: #fff;
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: center;
  padding: 50px;
}

.container {
  max-width: 500px;
  width: 100%;
  background: #1c1f3a;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

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

button {
  padding: 10px 15px;
  margin: 5px 5px 10px 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #ff4d6d;
  color: #fff;
  font-weight: bold;
}

#progressWrap {
  display: none;
  background: #2c2f4a;
  border-radius: 10px;
  padding: 5px;
  margin-top: 20px;
  position: relative;
}

#progressBar {
  width: 0%;
  height: 20px;
  background: linear-gradient(90deg, #ff4d6d, #ff75a0);
  border-radius: 10px;
  transition: width 0.3s ease;
}

#progressText {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: bold;
}

#progressInfo {
  margin-top: 5px;
  font-size: 14px;
}

.success {
  color: #00ff88;
  font-weight: bold;
  margin-top: 10px;
}
