/* user.css */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 20px;
  background-color: #fafafa;
  color: #333;
}

h2, h3 {
  color: #2c3e50;
}

input[type="text"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  max-width: 400px;
  padding: 8px 10px;
  margin: 8px 0 15px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  border-color: #3498db;
  outline: none;
}

button {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #2980b9;
}

/* Tablet list */
#tabletList {
  list-style-type: none;
  padding-left: 0;
  max-width: 600px;
  margin-bottom: 30px;
}

/* Order Status Tracker styles */
.tracker {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 30px;
  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%;
  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;
}
