/* tracking.css */
.tracking-hero {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.tracking-form-section {
    padding: 80px 0;
}

#trackingForm .input-group-lg .form-control {
    height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
}

.tracking-info {
    background-color: #f8f9fa;
    border-left: 4px solid #0066cc;
}

.tracking-steps {
    position: relative;
    padding-left: 30px;
}

.tracking-steps:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #e9ecef;
}

.tracking-step {
    position: relative;
    padding-bottom: 30px;
}

.step-icon {
    position: absolute;
    left: -30px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.tracking-step.completed .step-icon {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.tracking-step.active .step-icon {
    background: #0066cc;
    border-color: #0066cc;
    color: #fff;
}

.step-content {
    padding-left: 20px;
}

.step-content h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.tracking-step.completed h6 {
    color: #28a745;
}

.tracking-step.active h6 {
    color: #0066cc;
}

.step-content small {
    color: #6c757d;
    font-size: 0.85rem;
}

.tracking-help a {
    color: #0066cc;
    font-weight: 500;
}

@media (max-width: 768px) {
    .tracking-form-section {
        padding: 50px 0;
    }
}