.qty-group input {
    max-width: 40px;
}
[data-bs-theme="dark"] ::placeholder {
  color: #aaa !important; /* light gray placeholder text */
  opacity: 1; /* ensure visible */
}

/* Optional: make it slightly lighter for better contrast */
[data-bs-theme="dark"] .form-control::placeholder {
  color: #b5b5b5 !important;
}

/* Bootstrap Stepper Styles */
.step-indicator {
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e9ecef;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step-circle.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
}

.step-circle.pending {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #6c757d;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.step-indicator.active .step-label {
    color: #0d6efd;
}

.step-indicator:hover .step-circle {
    border-color: #0d6efd;
}

.step-indicator:hover .step-label {
    color: #0d6efd;
}

.progress {
    background-color: #e9ecef;
    border-radius: 4px;
}