body {
  background: #0a0a1f;
  color: #eee;
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 20px;
}

h1 {
  color: #b36bff;
}

form {
  background: #15152f;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  margin: 20px auto;
}

input, select, textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  background: #1e1e3f;
  border: none;
  color: #fff;
}

button {
  background: #b36bff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  color: #fff;
  border-radius: 5px;
}

button.danger {
  background: #ff4c4c;
}

.tracking-details {
  max-width: 600px;
  margin: auto;
}

.square-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.progress-bar {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
}

.step {
  color: #666;
  margin: 5px;
}

.step.active {
  color: #b36bff;
}

.bar {
  width: 40px;
  height: 4px;
  background: #444;
}

.bar.filled {
  background: #b36bff;
}

.accordion {
  background: #15152f;
  margin: 10px auto;
  border-radius: 8px;
  max-width: 800px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  cursor: pointer;
  border-bottom: 1px solid #333;
}

.accordion-content {
  display: none;
  padding: 15px;
}

.logout {
  display: inline-block;
  background: #444;
  color: #fff;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 5px;
}

.error {
  color: #ff4c4c;
}

@media(max-width: 600px) {
  .square-img {
    width: 100%;
    height: auto;
  }
}
