body {
  font-family: 'Poppins', sans-serif;
  background: #fff9fb;
  text-align: center;
  padding: 2rem;
  color: #333;
}

h1 {
  color: #d6336c;
  margin-bottom: 1rem;
}

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

form {
  background: #ffe3ec;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

input, button {
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.6rem;
  border-radius: 10px;
  border: 1px solid #ccc;
}

button {
  background: #d6336c;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #c2255c;
}

#progressContainer {
  margin-top: 1rem;
}

#progressBar {
  width: 100%;
  background: #f0cfe2;
  border-radius: 10px;
  overflow: hidden;
  height: 10px;
}

#progress {
  height: 10px;
  background: #d6336c;
  width: 0%;
  transition: width 0.2s;
}

.hidden {
  display: none;
}

.success {
  color: green;
  font-weight: bold;
  margin-top: 1rem;
}

.error {
  color: red;
  font-weight: bold;
  margin-top: 1rem;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.entry {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  width: 200px;
}

.entry img {
  width: 100%;
  border-radius: 8px;
}
