.mot-tracking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

.mot-tracking-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

#mot-order-id {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

#mot-check-order {
    padding: 12px 24px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#mot-check-order:hover {
    background-color: #45a049;
}

.mot-result {
    margin-top: 20px;
}

.mot-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.mot-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mot-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.mot-step.active .mot-step-icon {
    border-color: #4CAF50;
    background-color: #4CAF50;
    color: white;
}

.mot-step.completed .mot-step-icon {
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: white;
}

.mot-step-title {
    font-size: 14px;
    color: #666;
    text-align: center;
    max-width: 120px;
}

.mot-progress-bar {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ddd;
    z-index: 0;
}

.mot-progress-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #4CAF50;
    transition: width 0.3s;
}

.mot-message {
    text-align: center;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 4px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
}

.mot-order-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mot-order-info span {
    color: #666;
}

.mot-order-info strong {
    color: #333;
    margin-left: 5px;
}