/* details.css */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 20px;
  background-color: #fefefe;
  color: #333;
}

h2 {
  color: #2c3e50;
}

#details p {
  font-size: 16px;
  margin: 8px 0;
}

img {
  margin-top: 10px;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}

button {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #2980b9;
}

/* Status Tracker Styles */
.tracker {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 20px;
  max-width: 600px;
}

.step {
  text-align: center;
  flex: 1;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.step::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  height: 10px;
  width: 100%;
  border-top: 2px solid #ccc;
  z-index: -1;
}

.step:first-child::before {
  left: 50%;
  width: 50%;
}

.step:last-child::before {
  width: 50%;
}

.circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin: 0 auto;
  background-color: #ccc;
  line-height: 25px;
  color: white;
  font-size: 14px;
  user-select: none;
  transition: background-color 0.3s ease;
}

.active .circle {
  background-color: #27ae60;
}

.step span {
  display: block;
  margin-top: 5px;
  font-weight: 600;
  font-size: 14px;
  color: #555;
}
